diff options
author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-04-01 00:37:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-01 00:37:28 -0700 |
commit | 5dfa937e4ac609ae35ba3fb13b47b237b9151f07 (patch) | |
tree | ed60e99c72433df548f6f226516b6ab2b2aa60dd /runtime/lua/vim/lsp.lua | |
parent | a177820420d3de1614bff01321c0a54a2327fab3 (diff) | |
parent | f87ae324bb03ccd9f723a6b2a664e6058849f0f7 (diff) | |
download | rneovim-5dfa937e4ac609ae35ba3fb13b47b237b9151f07.tar.gz rneovim-5dfa937e4ac609ae35ba3fb13b47b237b9151f07.tar.bz2 rneovim-5dfa937e4ac609ae35ba3fb13b47b237b9151f07.zip |
Merge pull request #14266 from mjlbach/fix/rename_workspace_symbol_request
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'; |