diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2022-03-07 14:43:57 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2022-03-07 14:43:57 +0100 |
commit | 596823bc99e656d3913ad7fe7f6c0f27a30c0110 (patch) | |
tree | 9ddf40caf018cc630d445db327d7b8d52994f921 /lua/user/debounce.lua | |
parent | cbcab8684e06379c9f5c51cfc9cac68d8684fe0c (diff) | |
download | vim-596823bc99e656d3913ad7fe7f6c0f27a30c0110.zip vim-596823bc99e656d3913ad7fe7f6c0f27a30c0110.tar.gz |
switch to neovim + lua
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 |