aboutsummaryrefslogtreecommitdiffstats
path: root/plugin
diff options
context:
space:
mode:
Diffstat (limited to 'plugin')
-rw-r--r--plugin/nvim-lsp-installer.vim7
1 files changed, 0 insertions, 7 deletions
diff --git a/plugin/nvim-lsp-installer.vim b/plugin/nvim-lsp-installer.vim
index 48f6a96b..0e704e35 100644
--- a/plugin/nvim-lsp-installer.vim
+++ b/plugin/nvim-lsp-installer.vim
@@ -20,12 +20,6 @@ function! s:LspInstall(server_name) abort
call luaeval("require'nvim-lsp-installer'.install(_A)", a:server_name)
endfunction
-function! s:LspInstallAll() abort
- for server_name in s:MapServerName(luaeval("require'nvim-lsp-installer'.get_uninstalled_servers()"))
- call luaeval("require'nvim-lsp-installer'.install(_A)", server_name)
- endfor
-endfunction
-
function! s:LspUninstall(server_name) abort
call luaeval("require'nvim-lsp-installer'.uninstall(_A)", a:server_name)
endfunction
@@ -43,7 +37,6 @@ endfunction
command! -nargs=1 -complete=custom,s:LspInstallCompletion LspInstall exe s:LspInstall("<args>")
command! -nargs=1 -complete=custom,s:LspUninstallCompletion LspUninstall exe s:LspUninstall("<args>")
-command! LspInstallAll call s:LspInstallAll()
command! LspUninstallAll call s:LspUninstallAll()
command! LspPrintInstalled call s:LspPrintInstalled()