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

Quickfix window not opening automatically

Open pmurray17 opened this issue 3 years ago • 4 comments

After updating asyncrun the quickfix window is not opening automatically when containing text. vim 8.2 - patches 1-3423 asyncrun:2.9.11

augroup vimrc autocmd! autocmd QuickFixCmdPost * botright copen 8 autocmd QuickFixCmdPost make call AirlineRefresh "Close window if open when AsyncRun starts autocmd User AsyncRunStart call asyncrun#quickfix_toggle(8, 0) autocmd User AsyncRunStart AirlineRefresh augroup END

command! -bang -nargs=* -complete=file Make AsyncRun! -strip -silent -program=make @ -s -f makefile.42r %:r.42m

pmurray17 avatar Mar 08 '22 09:03 pmurray17

use this:

let g:asyncrun_open = 8

skywind3000 avatar Mar 08 '22 09:03 skywind3000

Thanks, already tried it to no effect. I have moved back a version for now to get some work done and quickfix window opening as expected.

pmurray17 avatar Mar 08 '22 10:03 pmurray17

can you try to disable the latest qfid feature by:

let g:asyncrun_qfid = 0

skywind3000 avatar Mar 13 '22 08:03 skywind3000

Hi,

Yes that has worked for me, shows up the errors in the quickfix window.

pmurray17 avatar Mar 15 '22 07:03 pmurray17