Skip to content

Commit

Permalink
Add handling of stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
djmoch committed Nov 14, 2016
1 parent fb65d78 commit eb87bb0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions plugin/makejob.vim
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,12 @@ function! s:MakeJob(lmake, ...)
endif
endif
let opts = { 'close_cb' : s:Function('s:JobHandler'),
\ 'out_io': 'buffer', 'out_name': prog,
\ 'out_modifiable': 0 }
\ 'out_io': 'buffer',
\ 'out_name': prog,
\ 'out_modifiable': 0,
\ 'err_io': 'buffer',
\ 'err_name': prog,
\ 'err_modifiable': 0}

if a:lmake
silent doautocmd QuickFixCmdPre lmake
Expand Down

0 comments on commit eb87bb0

Please sign in to comment.