Fix checker for cl-lsp

This commit is contained in:
Yasuhiro Matsumoto
2022-04-21 09:54:22 +09:00
parent b40d0c5a8d
commit 52068b38a6

View File

@@ -3,6 +3,6 @@ function! LspCheckCommand() abort
if !filereadable(l:command)
return ''
endif
call lsp_settings#set('cl-lsp', 'cmd', l:command)
call lsp_settings#set('cl-lsp', 'cmd', ['ros', '-Q', '--', l:command])
return l:command
endfunction