fix: increase buffer time for fzf-lua mode switching

This commit is contained in:
Steven Arcangeli 2023-08-06 19:50:14 -07:00
parent 829bc80400
commit 713b56e13c
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ M.select = function(config, items, opts, on_choice)
local args = vim.F.pack_len(...)
vim.defer_fn(function()
on_choice(vim.F.unpack_len(args))
end, 1)
end, 10)
end
return ui_select.ui_select(items, opts, deferred_on_choice)
end