fix: Outdated completion item with mini.snippets (#2126)

* fix: Outdated completion item with mini.snippets

* fix: Outdated completion item with mini.snippets. Prevent completion suggestions directly after snippet expand

* fix: Outdated completion item with mini.snippets. Undo changes

* fix: Outdated completion item with mini.snippets. The cmp.resubscribe solution

---------

Co-authored-by: abeldekat <abel@nomail.com>
This commit is contained in:
abeldekat
2025-01-23 07:22:37 +00:00
committed by GitHub
parent 8c82d0bd31
commit 12509903a5
4 changed files with 57 additions and 7 deletions

View File

@@ -328,6 +328,12 @@ cmp.status = function()
end
end
---Ensures that cmp is the last receiver of the events specified.
---@param events string[]
cmp.resubscribe = function(events)
autocmd.resubscribe(events)
end
---@type cmp.Setup
cmp.setup = setmetatable({
global = function(c)