We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71fe5c1 commit 6c4632cCopy full SHA for 6c4632c
1 file changed
lua/fzf-lua/providers/ui_select.lua
@@ -93,7 +93,8 @@ M.ui_select = function(items, ui_opts, on_choice)
93
94
-- deepcopy register opts so we don't poullute the original tbl ref (#2241)
95
if type(opts) == "table" then
96
- opts = vim.deepcopy(opts)
+ opts = utils.tbl_deep_clone(opts)
97
+ assert(opts) -- lint nil check
98
end
99
100
opts.fzf_opts = vim.tbl_extend("keep", opts.fzf_opts or {}, {
0 commit comments