move symbol into workspace (#1382)

This commit is contained in:
Takayuki Tsukitani
2022-10-25 10:47:35 +09:00
committed by GitHub
parent a85b71bfc8
commit 9d4dbf7e68

View File

@@ -590,9 +590,6 @@ function! lsp#default_get_supported_capabilities(server_info) abort
\ 'signatureHelp': {
\ 'dynamicRegistration': v:false,
\ },
\ 'symbol': {
\ 'dynamicRegistration': v:false,
\ },
\ 'synchronization': {
\ 'didSave': v:true,
\ 'dynamicRegistration': v:false,
@@ -613,6 +610,9 @@ function! lsp#default_get_supported_capabilities(server_info) abort
\ 'workspace': {
\ 'applyEdit': v:true,
\ 'configuration': v:true,
\ 'symbol': {
\ 'dynamicRegistration': v:false,
\ },
\ 'workspaceFolders': g:lsp_experimental_workspace_folders ? v:true : v:false,
\ },
\ }