Skip to content

Commit 9d4dbf7

Browse files
authored
move symbol into workspace (#1382)
1 parent a85b71b commit 9d4dbf7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

autoload/lsp.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -590,9 +590,6 @@ function! lsp#default_get_supported_capabilities(server_info) abort
590590
\ 'signatureHelp': {
591591
\ 'dynamicRegistration': v:false,
592592
\ },
593-
\ 'symbol': {
594-
\ 'dynamicRegistration': v:false,
595-
\ },
596593
\ 'synchronization': {
597594
\ 'didSave': v:true,
598595
\ 'dynamicRegistration': v:false,
@@ -613,6 +610,9 @@ function! lsp#default_get_supported_capabilities(server_info) abort
613610
\ 'workspace': {
614611
\ 'applyEdit': v:true,
615612
\ 'configuration': v:true,
613+
\ 'symbol': {
614+
\ 'dynamicRegistration': v:false,
615+
\ },
616616
\ 'workspaceFolders': g:lsp_experimental_workspace_folders ? v:true : v:false,
617617
\ },
618618
\ }

0 commit comments

Comments
 (0)