We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is only one quickfix window per tab, so a loop should not be necessary with
vim-dispatch/autoload/dispatch.vim
Lines 851 to 871 in fc8d1e6
On the other hand, there does not seem to be a way to find the quickfix window / distinguish it from the location list windows?!
The main issue here is that quickfix_title gets set for e.g. a Syntastic / Neomake location list then.
quickfix_title
The text was updated successfully, but these errors were encountered:
I've found something in vim-airline, which uses ls to get to that info (https://github.com/vim-airline/vim-airline/blob/master/autoload/airline/extensions/quickfix.vim#L20-L36):
ls
function! s:get_text() redir => buffers silent ls redir END let nr = bufnr('%') for buf in split(buffers, '\n') if match(buf, '\v^\s*'.nr) > -1 if match(buf, '\cQuickfix') > -1 return g:airline#extensions#quickfix#quickfix_text else return g:airline#extensions#quickfix#location_text endif endif endfor return '' endfunction
Sorry, something went wrong.
Just for reference: the following patch would help by having a buffer variable for it: neovim/neovim#4550.
No branches or pull requests
There is only one quickfix window per tab, so a loop should not be necessary with
vim-dispatch/autoload/dispatch.vim
Lines 851 to 871 in fc8d1e6
On the other hand, there does not seem to be a way to find the quickfix window / distinguish it from the location list windows?!
The main issue here is that
quickfix_title
gets set for e.g. a Syntastic / Neomake location list then.The text was updated successfully, but these errors were encountered: