mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
8 lines
209 B
VimL
8 lines
209 B
VimL
function! LspCheckCommand() abort
|
|
call system('perl -e "use Perl::LanguageServer"')
|
|
if v:shell_error
|
|
return ''
|
|
endif
|
|
return 'perl -MPerl::LanguageServer -e "Perl::LanguageServer->run"'
|
|
endfunction
|