Fix #1058 - Ignore all errors with bad calls to jobstop() in NeoVim

This commit is contained in:
w0rp 2017-11-04 10:54:06 +00:00
parent c1366f8a62
commit 2398fd7456
1 changed files with 1 additions and 1 deletions

View File

@ -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