]> Sergey Matveev's repositories - dotfiles.git/commitdiff
Fucking assholes renames already working things
authorSergey Matveev <stargrave@stargrave.org>
Wed, 16 Sep 2020 09:46:08 +0000 (12:46 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Wed, 16 Sep 2020 09:46:08 +0000 (12:46 +0300)
vim/.vim/ftplugin/c/lsp.vim
vim/.vim/ftplugin/go/lsp.vim
vim/.vim/ftplugin/python/lsp.vim

index 878b7a8ee6e6432a1569dcf4a890d5a02fdd18a7..39ce1068d35fe3d2b2e2c45d90315bba9b879e56 100644 (file)
@@ -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"],
 \})
index 92614c6ce9a62f2fc59bb613e8c84e56f0c45f51..ceaad6646f04bc033529f41905f06503b91dab91 100644 (file)
@@ -1,5 +1,5 @@
 au User lsp_setup call lsp#register_server({
 \    "name": "gopls",
 \    "cmd": ["gopls"],
-\    "whitelist": ["go"],
+\    "allowlist": ["go"],
 \})
index c792deac5f876346e32d566cc2d492966c84e9ec..85091b42a571d58d97280d57512f56e82454cb3f 100644 (file)
@@ -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