diff options
author | Maria José Solano <majosolano99@gmail.com> | 2025-01-13 19:39:03 -0800 |
---|---|---|
committer | Maria José Solano <majosolano99@gmail.com> | 2025-01-14 19:55:29 -0800 |
commit | 850084b519e18122820478a71bb4bfa4c15e528a (patch) | |
tree | 823be74521c51f4f19ba6c35bcffdf24396e0e8a /runtime/lua/vim/lsp/handlers.lua | |
parent | a4f575abd85e734340ee303daace1a63e5ca9782 (diff) | |
download | rneovim-850084b519e18122820478a71bb4bfa4c15e528a.tar.gz rneovim-850084b519e18122820478a71bb4bfa4c15e528a.tar.bz2 rneovim-850084b519e18122820478a71bb4bfa4c15e528a.zip |
refactor: use nvim.foo.bar format for namespaces
Diffstat (limited to 'runtime/lua/vim/lsp/handlers.lua')
-rw-r--r-- | runtime/lua/vim/lsp/handlers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/lsp/handlers.lua b/runtime/lua/vim/lsp/handlers.lua index 3779c342e8..425e3206aa 100644 --- a/runtime/lua/vim/lsp/handlers.lua +++ b/runtime/lua/vim/lsp/handlers.lua @@ -382,7 +382,7 @@ end --- @diagnostic disable-next-line: deprecated RCS[ms.textDocument_hover] = M.hover -local sig_help_ns = api.nvim_create_namespace('vim_lsp_signature_help') +local sig_help_ns = api.nvim_create_namespace('nvim.lsp.signature_help') --- @deprecated remove in 0.13 --- |lsp-handler| for the method "textDocument/signatureHelp". |