Fix #1058 - Ignore all errors with bad calls to jobstop() in NeoVim
This commit is contained in:
parent
c1366f8a62
commit
2398fd7456
1 changed files with 1 additions and 1 deletions
|
@ -290,7 +290,7 @@ function! ale#job#Stop(job_id) abort
|
|||
" FIXME: NeoVim kills jobs on a timer, but will not kill any processes
|
||||
" which are child processes on Unix. Some work needs to be done to
|
||||
" kill child processes to stop long-running processes like pylint.
|
||||
call jobstop(a:job_id)
|
||||
silent! call jobstop(a:job_id)
|
||||
else
|
||||
let l:job = s:job_map[a:job_id].job
|
||||
|
||||
|
|
Reference in a new issue