Mercurial > vim-gutentags
comparison autoload/gutentags.vim @ 206:1ffa9d58c2bb
Merge pull request #162 from justinmk/fix
Fix arguments to gutentags#default_io_cb()
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sun, 01 Apr 2018 09:33:23 -0700 |
parents | 485a347152fe |
children | 20bfab5b054f |
comparison
equal
deleted
inserted
replaced
204:30ac3583c902 | 206:1ffa9d58c2bb |
---|---|
557 function! s:nvim_job_exit_wrapper(real_cb, job, exit_code, event_type) abort | 557 function! s:nvim_job_exit_wrapper(real_cb, job, exit_code, event_type) abort |
558 call call(a:real_cb, [a:job, a:exit_code]) | 558 call call(a:real_cb, [a:job, a:exit_code]) |
559 endfunction | 559 endfunction |
560 | 560 |
561 function! s:nvim_job_out_wrapper(real_cb, job, lines, event_type) abort | 561 function! s:nvim_job_out_wrapper(real_cb, job, lines, event_type) abort |
562 call call(a:real_cb, [a:lines]) | 562 call call(a:real_cb, [a:job, a:lines]) |
563 endfunction | 563 endfunction |
564 | 564 |
565 function! gutentags#build_default_job_options(module) abort | 565 function! gutentags#build_default_job_options(module) abort |
566 let l:job_opts = { | 566 let l:job_opts = { |
567 \'on_exit': function( | 567 \'on_exit': function( |