diff options
author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-03-31 23:49:12 -0700 |
---|---|---|
committer | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-03-31 23:53:07 -0700 |
commit | f87ae324bb03ccd9f723a6b2a664e6058849f0f7 (patch) | |
tree | ed60e99c72433df548f6f226516b6ab2b2aa60dd /runtime/lua/vim/lsp.lua | |
parent | a177820420d3de1614bff01321c0a54a2327fab3 (diff) | |
download | rneovim-f87ae324bb03ccd9f723a6b2a664e6058849f0f7.tar.gz rneovim-f87ae324bb03ccd9f723a6b2a664e6058849f0f7.tar.bz2 rneovim-f87ae324bb03ccd9f723a6b2a664e6058849f0f7.zip |
lsp: fix textDocument/workspaceSymbol -> workspace/symbol
Diffstat (limited to 'runtime/lua/vim/lsp.lua')
-rw-r--r-- | runtime/lua/vim/lsp.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/lsp.lua b/runtime/lua/vim/lsp.lua index 4110bd1910..edbe8753be 100644 --- a/runtime/lua/vim/lsp.lua +++ b/runtime/lua/vim/lsp.lua @@ -38,13 +38,13 @@ lsp._request_name_to_capability = { ['textDocument/declaration'] = 'declaration'; ['textDocument/typeDefinition'] = 'type_definition'; ['textDocument/documentSymbol'] = 'document_symbol'; - ['textDocument/workspaceSymbol'] = 'workspace_symbol'; ['textDocument/prepareCallHierarchy'] = 'call_hierarchy'; ['textDocument/rename'] = 'rename'; ['textDocument/codeAction'] = 'code_action'; ['textDocument/codeLens'] = 'code_lens'; ['codeLens/resolve'] = 'code_lens_resolve'; ['workspace/executeCommand'] = 'execute_command'; + ['workspace/symbol'] = 'workspace_symbol'; ['textDocument/references'] = 'find_references'; ['textDocument/rangeFormatting'] = 'document_range_formatting'; ['textDocument/formatting'] = 'document_formatting'; |