added more dynamicRegistration set to false (#969)

This commit is contained in:
Prabir Shrestha
2020-12-24 00:35:55 -08:00
committed by GitHub
parent f9c8184c74
commit 3cdca33b2e

View File

@@ -492,11 +492,16 @@ function! lsp#default_get_supported_capabilities(server_info) abort
\ 'symbolKind': {
\ 'valueSet': lsp#ui#vim#utils#get_symbol_kinds()
\ },
\ 'hierarchicalDocumentSymbolSupport': v:false
\ 'hierarchicalDocumentSymbolSupport': v:false,
\ 'labelSupport': v:false
\ },
\ 'foldingRange': {
\ 'dynamicRegistration': v:false,
\ 'lineFoldingOnly': v:true
\ 'lineFoldingOnly': v:true,
\ 'rangeLimit': 5000,
\ },
\ 'formatting': {
\ 'dynamicRegistration': v:false,
\ },
\ 'hover': {
\ 'dynamicRegistration': v:false,
@@ -506,6 +511,9 @@ function! lsp#default_get_supported_capabilities(server_info) abort
\ 'dynamicRegistration': v:false,
\ 'linkSupport' : v:true
\ },
\ 'rangeFormatting': {
\ 'dynamicRegistration': v:false,
\ },
\ 'references': {
\ 'dynamicRegistration': v:false,
\ },