From: Sergey Matveev Date: Wed, 16 Sep 2020 09:46:08 +0000 (+0300) Subject: Fucking assholes renames already working things X-Git-Url: http://www.git.stargrave.org/?p=dotfiles.git;a=commitdiff_plain;h=1c33920c93a58a40a622f567d9227581bfa55f8f Fucking assholes renames already working things --- diff --git a/vim/.vim/ftplugin/c/lsp.vim b/vim/.vim/ftplugin/c/lsp.vim index 878b7a8..39ce106 100644 --- a/vim/.vim/ftplugin/c/lsp.vim +++ b/vim/.vim/ftplugin/c/lsp.vim @@ -1,5 +1,5 @@ au User lsp_setup call lsp#register_server({ \ "name": "clangd", \ "cmd": ["clangd60"], -\ "whitelist": ["c", "cpp", "objc", "objcpp"], +\ "allowlist": ["c", "cpp", "objc", "objcpp"], \}) diff --git a/vim/.vim/ftplugin/go/lsp.vim b/vim/.vim/ftplugin/go/lsp.vim index 92614c6..ceaad66 100644 --- a/vim/.vim/ftplugin/go/lsp.vim +++ b/vim/.vim/ftplugin/go/lsp.vim @@ -1,5 +1,5 @@ au User lsp_setup call lsp#register_server({ \ "name": "gopls", \ "cmd": ["gopls"], -\ "whitelist": ["go"], +\ "allowlist": ["go"], \}) diff --git a/vim/.vim/ftplugin/python/lsp.vim b/vim/.vim/ftplugin/python/lsp.vim index c792dea..85091b4 100644 --- a/vim/.vim/ftplugin/python/lsp.vim +++ b/vim/.vim/ftplugin/python/lsp.vim @@ -3,6 +3,6 @@ if executable("pyls") au User lsp_setup call lsp#register_server({ \ "name": "pyls", \ "cmd": {server_info->["pyls"]}, - \ "whitelist": ["python"], + \ "allowlist": ["python"], \}) endif