We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 873790e commit aeb6195Copy full SHA for aeb6195
lua/blink/cmp/accept/init.lua
@@ -64,7 +64,8 @@ local function accept(item)
64
end
65
66
-- Notify the rust module that the item was accessed
67
- require('blink.cmp.fuzzy').access(item)
+ -- TODO: why is this so slow? (10ms)
68
+ vim.schedule(function() require('blink.cmp.fuzzy').access(item) end)
69
end)
70
:catch(function(err) vim.notify(err, vim.log.levels.ERROR) end)
71
0 commit comments