diff options
Diffstat (limited to 'lua/user/debounce.lua')
-rw-r--r-- | lua/user/debounce.lua | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lua/user/debounce.lua b/lua/user/debounce.lua new file mode 100644 index 0000000..732c2e8 --- /dev/null +++ b/lua/user/debounce.lua @@ -0,0 +1,19 @@ +local M = {} + +local cmp = require("cmp") +local timer = vim.loop.new_timer() + +local DEBOUNCE_DELAY = 200 + +function M.debounce() + timer:stop() + timer:start( + DEBOUNCE_DELAY, + 0, + vim.schedule_wrap(function() + cmp.complete({ reason = cmp.ContextReason.Auto }) + end) + ) +end + +return M |