From 58954425c455c3774ff373ccee2bdefca83a4b26 Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Thu, 13 Oct 2016 17:07:02 +0900 Subject: [PATCH] should be a:data --- plug.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plug.vim b/plug.vim index 110888d..3b3b092 100644 --- a/plug.vim +++ b/plug.vim @@ -1163,9 +1163,9 @@ function! s:nvim_job_handler(job_id, data, event) abort endif if a:event == 'stdout' - call s:job_out_cb(self, a:job_id, data) + call s:job_out_cb(self, a:job_id, a:data) elseif a:event == 'exit' - call s:job_exit_cb(self, a:job_id, data) + call s:job_exit_cb(self, a:job_id, a:data) endif endfunction