mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
15 lines
1.0 KiB
VimL
15 lines
1.0 KiB
VimL
augroup vim_lsp_settings_cobol_language_support
|
|
au!
|
|
LspRegisterServer {
|
|
\ 'name': 'cobol-language-support',
|
|
\ 'cmd': {server_info->lsp_settings#get('cobol-language-support', 'cmd', [lsp_settings#exec_path('cobol-language-support')]+lsp_settings#get('cobol-language-support', 'args', []))},
|
|
\ 'root_uri':{server_info->lsp_settings#get('cobol-language-server', 'root_uri', lsp_settings#root_uri('cobol-language-support'))},
|
|
\ 'initialization_options': lsp_settings#get('cobol-language-support', 'initialization_options', {}),
|
|
\ 'allowlist': lsp_settings#get('cobol-language-support', 'allowlist', ['cobol']),
|
|
\ 'blocklist': lsp_settings#get('cobol-language-support', 'blocklist', []),
|
|
\ 'config': lsp_settings#get('cobol-language-support', 'config', lsp_settings#server_config('cobol-language-support')),
|
|
\ 'workspace_config': lsp_settings#get('cobol-language-support', 'workspace_config', {}),
|
|
\ 'semantic_highlight': lsp_settings#get('cobol-language-support', 'semantic_highlight', {}),
|
|
\ }
|
|
augroup END
|