asyncrun.vim icon indicating copy to clipboard operation
asyncrun.vim copied to clipboard

Quickfix window only show c program exit code without detail error information

Open EtherealRise opened this issue 6 years ago • 2 comments

I had use this plug for a time, it's convenience but a little problem bothers me :( As the picture below, the quickfix window only show exit with code -1, but i don't know what exactly the error is.So is there any setting i missed or this feature can't be achieve? screen shot 2018-11-11 at 18 27 05 screen shot 2018-11-11 at 18 27 13

EtherealRise avatar Nov 11 '18 10:11 EtherealRise

can you try this:

:AsyncRun -raw=1 xxxx

skywind3000 avatar Nov 11 '18 11:11 skywind3000

I set raw to 1, it still only show exit code Here is my vimrc setting:

let g:asyncrun_open=6
nnoremap <silent><F1> :AsyncRun clang "$(VIM_FILEPATH)" -o "$(VIM_FILEDIR)/$(VIM_FILENOEXT)" <cr>
nnoremap <silent><F2> :AsyncRun -raw=1 -cwd=$(VIM_FILEDIR) "$(VIM_FILEDIR)/$(VIM_FILENOEXT)" <cr>

EtherealRise avatar Nov 11 '18 11:11 EtherealRise