diff options
author | Michael Lingelbach <m.j.lbach@gmail.com> | 2022-01-05 08:36:35 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-05 08:36:35 -0800 |
commit | 55a59e56eda98f17448a1c318a346ae12d30fc05 (patch) | |
tree | b10b98f1355a9bb32af5ca6ec67272a462c06b7a /runtime/doc | |
parent | f65b0d4236eef69b02390a51cf335b0836f35801 (diff) | |
download | rneovim-55a59e56eda98f17448a1c318a346ae12d30fc05.tar.gz rneovim-55a59e56eda98f17448a1c318a346ae12d30fc05.tar.bz2 rneovim-55a59e56eda98f17448a1c318a346ae12d30fc05.zip |
feat(lsp): enable default debounce of 150 ms (#16908)
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/lsp.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt index 614dd82443..bb42a87034 100644 --- a/runtime/doc/lsp.txt +++ b/runtime/doc/lsp.txt @@ -887,10 +887,10 @@ start_client({config}) *vim.lsp.start_client()* default true): Allow using incremental sync for buffer edits • debounce_text_changes (number, - default nil): Debounce didChange + default 150): Debounce didChange notifications to the server by the given number in milliseconds. No - debounce occurs if nil + debounce occurs if set to 0. • exit_timeout (number, default 500): Milliseconds to wait for server to exit cleanly after sending the |