1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
if exists('g:loaded_nvim_lsp_installer') | finish | endif
let g:loaded_nvim_lsp_installer = v:true
let s:save_cpo = &cpo
set cpo&vim
let s:no_confirm_flag = "--no-confirm"
function! s:LspInstallCompletion(...) abort
return join(sort(luaeval("require'nvim-lsp-installer'.get_install_completion()")), "\n")
endfunction
function! s:LspUninstallCompletion(...) abort
return join(sort(luaeval("require'nvim-lsp-installer.servers'.get_installed_server_names()")), "\n")
endfunction
function! s:LspUninstallAllCompletion(...) abort
return s:no_confirm_flag
endfunction
function! s:ParseArgs(args)
let sync = a:args[0] == "--sync"
let servers = sync ? a:args[1:] : a:args
return { 'sync': sync, 'servers': servers }
endfunction
function! s:LspInstall(args) abort
let parsed_args = s:ParseArgs(a:args)
if parsed_args.sync
call luaeval("require'nvim-lsp-installer'.install_sync(_A)", parsed_args.servers)
else
for server_name in l:parsed_args.servers
call luaeval("require'nvim-lsp-installer'.install(_A)", server_name)
endfor
endif
endfunction
function! s:LspUninstall(args) abort
let parsed_args = s:ParseArgs(a:args)
if parsed_args.sync
call luaeval("require'nvim-lsp-installer'.uninstall_sync(_A)", parsed_args.servers)
else
for server_name in l:parsed_args.servers
call luaeval("require'nvim-lsp-installer'.uninstall(_A)", server_name)
endfor
endif
endfunction
function! s:LspUninstallAll(args) abort
let no_confirm = get(a:args, 0, "") == s:no_confirm_flag
call luaeval("require'nvim-lsp-installer'.uninstall_all(_A)", no_confirm ? v:true : v:false)
endfunction
function! s:LspPrintInstalled() abort
echo luaeval("require'nvim-lsp-installer.servers'.get_installed_server_names()")
endfunction
function! s:LspInstallInfo() abort
lua require'nvim-lsp-installer'.info_window.open()
endfunction
function! s:LspInstallLog() abort
exe 'tabnew ' .. luaeval("require'nvim-lsp-installer.log'.outfile")
endfunction
command! -bar -nargs=+ -complete=custom,s:LspInstallCompletion LspInstall call s:LspInstall([<f-args>])
command! -bar -nargs=+ -complete=custom,s:LspUninstallCompletion LspUninstall call s:LspUninstall([<f-args>])
command! -bar -nargs=? -complete=custom,s:LspUninstallAllCompletion LspUninstallAll call s:LspUninstallAll([<f-args>])
command! LspPrintInstalled call s:LspPrintInstalled()
command! LspInstallInfo call s:LspInstallInfo()
command! LspInstallLog call s:LspInstallLog()
let &cpo = s:save_cpo
unlet s:save_cpo
|