Fix some problems with LSP functions

This commit is contained in:
w0rp
2017-05-16 19:37:58 +01:00
parent a65358cfce
commit 1b53fa841b
2 changed files with 18 additions and 16 deletions

View File

@@ -220,7 +220,7 @@ function! ale#job#SendRaw(job_id, string) abort
if has('nvim')
call jobsend(a:job_id, a:string)
else
call ch_sendraw(job_getchannel(s:job_map[a:job_id]), a:string)
call ch_sendraw(job_getchannel(s:job_map[a:job_id].job), a:string)
endif
endfunction