diff options
| author | github-actions <github-actions@github.com> | 2022-11-21 10:06:05 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2022-11-21 10:06:05 +0000 |
| commit | ea5744f9243ec25a178a0bc403a4c8203ecc4f23 (patch) | |
| tree | 1c609d83b9d0301905f089dbbdae6cf05dc05f14 | |
| parent | fix: override another progress handler for jdtls (#2153) (diff) | |
| download | nvim-lspconfig-ea5744f9243ec25a178a0bc403a4c8203ecc4f23.tar nvim-lspconfig-ea5744f9243ec25a178a0bc403a4c8203ecc4f23.tar.gz nvim-lspconfig-ea5744f9243ec25a178a0bc403a4c8203ecc4f23.tar.bz2 nvim-lspconfig-ea5744f9243ec25a178a0bc403a4c8203ecc4f23.tar.lz nvim-lspconfig-ea5744f9243ec25a178a0bc403a4c8203ecc4f23.tar.xz nvim-lspconfig-ea5744f9243ec25a178a0bc403a4c8203ecc4f23.tar.zst nvim-lspconfig-ea5744f9243ec25a178a0bc403a4c8203ecc4f23.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 9 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 9 |
2 files changed, 10 insertions, 8 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index a76f73e8..0e75131f 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -3358,10 +3358,11 @@ require'lspconfig'.jdtls.setup{} - `handlers` : ```lua { - ["language/status"] = <function 1>, - ["textDocument/codeAction"] = <function 2>, - ["textDocument/rename"] = <function 3>, - ["workspace/applyEdit"] = <function 4> + ["$/progress"] = <function 1>, + ["language/status"] = <function 2>, + ["textDocument/codeAction"] = <function 3>, + ["textDocument/rename"] = <function 4>, + ["workspace/applyEdit"] = <function 5> } ``` - `init_options` : diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index a76f73e8..0e75131f 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -3358,10 +3358,11 @@ require'lspconfig'.jdtls.setup{} - `handlers` : ```lua { - ["language/status"] = <function 1>, - ["textDocument/codeAction"] = <function 2>, - ["textDocument/rename"] = <function 3>, - ["workspace/applyEdit"] = <function 4> + ["$/progress"] = <function 1>, + ["language/status"] = <function 2>, + ["textDocument/codeAction"] = <function 3>, + ["textDocument/rename"] = <function 4>, + ["workspace/applyEdit"] = <function 5> } ``` - `init_options` : |
