mirror of
https://github.com/prabirshrestha/vim-lsp.git
synced 2025-12-14 20:35:59 +01:00
added more dynamicRegistration set to false (#969)
This commit is contained in:
@@ -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,
|
||||
\ },
|
||||
|
||||
Reference in New Issue
Block a user