summaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2022-03-15 16:20:04 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2022-03-15 16:20:04 +0100
commit9a03ef48233d14fa660d7e2ab66dedef9db4a6d8 (patch)
treef65776897e52bb7ba39a715d7a81bf6019ca7c69 /lua
parent942c4345727bd3a030f57d85b1506da745000a97 (diff)
downloadvim-9a03ef48233d14fa660d7e2ab66dedef9db4a6d8.zip
vim-9a03ef48233d14fa660d7e2ab66dedef9db4a6d8.tar.gz
debounce -> 400ms
Diffstat (limited to 'lua')
-rw-r--r--lua/user/debounce.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/user/debounce.lua b/lua/user/debounce.lua
index 732c2e8..abfe543 100644
--- a/lua/user/debounce.lua
+++ b/lua/user/debounce.lua
@@ -3,7 +3,7 @@ local M = {}
local cmp = require("cmp")
local timer = vim.loop.new_timer()
-local DEBOUNCE_DELAY = 200
+local DEBOUNCE_DELAY = 400
function M.debounce()
timer:stop()