diff options
author | Lewis Russell <lewis6991@gmail.com> | 2024-10-29 09:36:02 +0000 |
---|---|---|
committer | Lewis Russell <me@lewisr.dev> | 2024-11-01 09:17:39 +0000 |
commit | 9b357e30fdd0a575480182872331fdb87e9cc331 (patch) | |
tree | 02e7a8ce3fcd70946acca8e27d2769dfcf75b6e3 /runtime/lua/vim/lsp.lua | |
parent | f54266dbed6f1a4cb4fad3486a722a25070d7feb (diff) | |
download | rneovim-9b357e30fdd0a575480182872331fdb87e9cc331.tar.gz rneovim-9b357e30fdd0a575480182872331fdb87e9cc331.tar.bz2 rneovim-9b357e30fdd0a575480182872331fdb87e9cc331.zip |
feat(lsp)!: remove client-server handlers from vim.lsp.handlers
- Partition the handlers in vim.lsp.handlers as:
- client to server response handlers (RCS)
- server to client request handlers (RSC)
- server to client notification handlers (NSC)
Note use string indexes instead of protocol.methods for improved
typing in LuaLS (tip: use hover on RCS, RSC or NSC).
Diffstat (limited to 'runtime/lua/vim/lsp.lua')
-rw-r--r-- | runtime/lua/vim/lsp.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lua/vim/lsp.lua b/runtime/lua/vim/lsp.lua index a8ae283f64..42a0ccc3d4 100644 --- a/runtime/lua/vim/lsp.lua +++ b/runtime/lua/vim/lsp.lua @@ -1165,6 +1165,7 @@ function lsp.for_each_buffer_client(bufnr, fn) end end +--- @deprecated --- Function to manage overriding defaults for LSP handlers. ---@param handler (lsp.Handler) See |lsp-handler| ---@param override_config (table) Table containing the keys to override behavior of the {handler} |