aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig.lua
diff options
context:
space:
mode:
authorMichael Lingelbach <m.j.lbach@gmail.com>2021-01-24 14:32:53 -0800
committerMichael Lingelbach <m.j.lbach@gmail.com>2021-01-24 14:32:53 -0800
commita1825d2afb9ce6a45f04797636f576d8d4fcccd2 (patch)
tree532d5abd4d97537b613bc9dc93d7f8746ce26481 /lua/lspconfig.lua
parent[docgen] Update CONFIG.md (diff)
downloadnvim-lspconfig-a1825d2afb9ce6a45f04797636f576d8d4fcccd2.tar
nvim-lspconfig-a1825d2afb9ce6a45f04797636f576d8d4fcccd2.tar.gz
nvim-lspconfig-a1825d2afb9ce6a45f04797636f576d8d4fcccd2.tar.bz2
nvim-lspconfig-a1825d2afb9ce6a45f04797636f576d8d4fcccd2.tar.lz
nvim-lspconfig-a1825d2afb9ce6a45f04797636f576d8d4fcccd2.tar.xz
nvim-lspconfig-a1825d2afb9ce6a45f04797636f576d8d4fcccd2.tar.zst
nvim-lspconfig-a1825d2afb9ce6a45f04797636f576d8d4fcccd2.zip
Remove deprecated commands :LspInstall and :LspInstallInfo
Diffstat (limited to 'lua/lspconfig.lua')
-rw-r--r--lua/lspconfig.lua16
1 files changed, 0 insertions, 16 deletions
diff --git a/lua/lspconfig.lua b/lua/lspconfig.lua
index 7c43c22b..f768a3d8 100644
--- a/lua/lspconfig.lua
+++ b/lua/lspconfig.lua
@@ -26,22 +26,6 @@ function M._root._setup()
"-nargs=?";
description = '`:LspInfo` Displays attached, active, and configured language servers';
};
- LspInstall = {
- function()
- print("deprecated, see https://github.com/neovim/neovim/wiki/Following-HEAD")
- end;
- "-nargs=?";
- "-complete=custom,v:lua.lsp_complete_installable_servers";
- description = '`:LspInstall {name}` installs a server under stdpath("cache")/lspconfig/{name}';
- };
- LspInstallInfo = {
- function()
- print("deprecated, see https://github.com/neovim/neovim/wiki/Following-HEAD")
- end;
- "-nargs=?";
- "-complete=custom,v:lua.lsp_complete_servers";
- description = 'Print installation info for {name} if one is specified, or all installable servers.';
- };
};
M.util.create_module_commands("_root", M._root.commands)