skywind3000 / asyncrun.vim

:rocket: Run Async Shell Commands in Vim 8.0 / NeoVim and Output to the Quickfix Window !!
https://www.vim.org/scripts/script.php?script_id=5431
MIT License
1.84k stars 109 forks source link

Quickfix window not opening automatically #244

Closed pmurray17 closed 1 year ago

pmurray17 commented 2 years ago

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

skywind3000 commented 2 years ago

use this:

let g:asyncrun_open = 8
pmurray17 commented 2 years ago

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.

skywind3000 commented 2 years ago

can you try to disable the latest qfid feature by:

let g:asyncrun_qfid = 0
pmurray17 commented 2 years ago

Hi,

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