Add LspManageServers

This commit is contained in:
Yasuhiro Matsumoto
2021-12-22 01:26:21 +09:00
committed by mattn
parent d9c087ec31
commit 0269e5f3d0
2 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,65 @@
function! s:install_or_update() abort
let l:command = getline('.')[4:]
if empty(l:command)
return
endif
if confirm('Install ' . l:command . ' ?', "&OK\n&Cancel") ==# 2
return
endif
exe 'LspInstallServer' l:command
endfunction
function! s:uninstall() abort
let l:command = getline('.')[4:]
if empty(l:command)
return
endif
if confirm('Uninstall ' . l:command . ' ?', "&OK\n&Cancel") ==# 2
return
endif
exe 'LspUninstallServer' l:command
endfunction
function! lsp_settings#ui#open() abort
silent new __LSP_SETTINGS_
only!
setlocal buftype=nofile bufhidden=wipe noswapfile
setlocal cursorline
setlocal nomodified
let l:names = []
let l:types = {}
let l:installer_dir = lsp_settings#installer_dir()
let l:settings = lsp_settings#settings()
for l:ft in sort(keys(l:settings))
for l:conf in l:settings[l:ft]
let l:missing = 0
for l:require in l:conf.requires
if !executable(l:require)
let l:missing = 1
break
endif
endfor
if l:missing ># 0
continue
endif
call add(l:names, l:conf.command)
if !has_key(l:types, l:conf.command)
let l:types[l:conf.command] = [l:ft]
else
call add(l:types[l:conf.command], l:ft)
endif
endfor
endfor
let l:names = uniq(sort(l:names))
call map(l:names, {_, v -> printf('%s %s (%s)', lsp_settings#executable(v) ? '[*]' : '[ ]', v, join(l:types[v], ', '))})
set modifiable
cal setline(1, l:names)
set nomodifiable
nnoremap <buffer> i :call <SID>install_or_update()<cr>
nnoremap <buffer> x :call <SID>uninstall()<cr>
nnoremap q :bw<cr>
redraw
echomsg 'Type i to install, or x to uninstall'
endfunction

View File

@@ -14,5 +14,6 @@ let g:lsp_settings_root_markers = get(g:, 'lsp_settings_root_markers', [
command! -nargs=0 LspSettingsStatus call lsp_settings#profile#status()
command! -nargs=? LspSettingsLocalEdit call lsp_settings#profile#edit_local(<f-args>)
command! -nargs=0 LspSettingsGlobalEdit call lsp_settings#profile#edit_global()
command! -nargs=0 LspManageServers call lsp_settings#ui#open()
call lsp_settings#init()