asyncrun.vim
asyncrun.vim copied to clipboard
Quickfix window only show c program exit code without detail error information
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?
can you try this:
:AsyncRun -raw=1 xxxx
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>