Increate update debounce from 50ms to 100ms

This commit is contained in:
Lewis Russell 2020-11-03 13:33:18 +00:00
parent 36f1b519ef
commit 0629c2d221
1 changed files with 1 additions and 1 deletions

View File

@ -343,7 +343,7 @@ end)
local update_cnt = 0
local update = debounce_trailing(50, async('update', function(bufnr)
local update = debounce_trailing(100, async('update', function(bufnr)
vim.validate {bufnr = {bufnr, 'number'}}
local bcache = cache[bufnr]