Skip to content

Commit c851073

Browse files
committed
Suppress log for exit status 143 SIGTERM
Close #877
1 parent baea090 commit c851073

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/LanguageClient.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ function! s:HandleMessage(job, lines, event) abort
528528
elseif a:event ==# 'stderr'
529529
call s:Echoerr('LanguageClient stderr: ' . string(a:lines))
530530
elseif a:event ==# 'exit'
531-
if type(a:lines) == type(0) && a:lines == 0
531+
if type(a:lines) == type(0) && (a:lines == 0 || a:lines == 143)
532532
return
533533
endif
534534
call s:Debug('LanguageClient exited with: ' . string(a:lines))

0 commit comments

Comments
 (0)