You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Same here, my workaround is simply to discard if in fast event:
diff --git a/lua/blink/cmp/lib/event_emitter.lua b/lua/blink/cmp/lib/event_emitter.lua
index 03a60a3..122f9c0 100644
--- a/lua/blink/cmp/lib/event_emitter.lua+++ b/lua/blink/cmp/lib/event_emitter.lua@@ -22,6 +22,7 @@ function event_emitter:off(callback)
end
function event_emitter:emit(data)
+ if vim.in_fast_event() then return end
data = data or {}
data.event = self.event
for _, callback in ipairs(self.listeners) do
Make sure you have done the following
blink.cmp
Bug Description
My solution.
Relevant configuration
No response
neovim version
0.10
blink.cmp
version: branch, tag, or commitmain
The text was updated successfully, but these errors were encountered: