When I have :TabBar open and run a :GoBuild, the quickfix is under the Tagbar window (which is small) instead of being under the code window.
Hi @the42
Quickfix windows are global and it's a vim feature. What you can do to add something like the following to your vimrc:
" push quickfix window always to the bottom
autocmd FileType qf wincmd J
Thanks.
Most helpful comment
Hi @the42
Quickfix windows are global and it's a vim feature. What you can do to add something like the following to your vimrc:
Thanks.