Skip to content

Commit 6d63599

Browse files
committed
feat(ivy): WIP
1 parent 5a0581c commit 6d63599

6 files changed

Lines changed: 131 additions & 109 deletions

File tree

lua/fzf-lua/ctx.lua

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ local ctx
1616
---@field cursor integer[]
1717
---@field line string
1818
---@field curtab_wins { [string]: boolean }
19+
---@field winopts { winhl: string, cursorline: boolean }
1920
---@field bufmap? { [string]: boolean }
2021
---@field buflist? integer[]
2122

@@ -61,7 +62,11 @@ M.refresh = function(opts)
6162
ret[tostring(w)] = true
6263
end
6364
return ret
64-
end)()
65+
end)(),
66+
winopts = {
67+
winhl = vim.wo.winhl,
68+
cursorline = vim.wo.cursorline,
69+
},
6570
}
6671
end
6772
-- perhaps a min impact optimization but since only

0 commit comments

Comments
 (0)