mirror of
https://github.com/dense-analysis/ale.git
synced 2026-02-04 17:12:53 +08:00
#649 Output the tsserver command in ALEInfo
This commit is contained in:
@@ -538,9 +538,22 @@ function! s:CheckWithTSServer(buffer, linter, executable) abort
|
||||
let l:open_documents = l:info.open_lsp_documents
|
||||
let l:is_open = index(l:open_documents, a:linter.name) >= 0
|
||||
|
||||
call ale#lsp#StartProgram(a:executable, a:executable, function('s:HandleLSPResponse'))
|
||||
let l:command = ale#job#PrepareCommand(a:executable)
|
||||
let l:job_id = ale#lsp#StartProgram(a:executable, l:command, function('s:HandleLSPResponse'))
|
||||
|
||||
if !l:job_id
|
||||
if g:ale_history_enabled
|
||||
call ale#history#Add(a:buffer, 'failed', l:job_id, l:command)
|
||||
endif
|
||||
|
||||
return
|
||||
endif
|
||||
|
||||
if !l:is_open
|
||||
if g:ale_history_enabled
|
||||
call ale#history#Add(a:buffer, 'started', l:job_id, l:command)
|
||||
endif
|
||||
|
||||
call add(l:open_documents, a:linter.name)
|
||||
call ale#lsp#SendMessageToProgram(
|
||||
\ a:executable,
|
||||
|
||||
Reference in New Issue
Block a user