mirror of
https://github.com/junegunn/fzf.vim.git
synced 2025-12-28 14:56:53 +08:00
[Buffers] Ignore quickfix Windows (#249)
This commit is contained in:
@@ -117,7 +117,7 @@ for s:color_name in keys(s:ansi)
|
||||
endfor
|
||||
|
||||
function! s:buflisted()
|
||||
return filter(range(1, bufnr('$')), 'buflisted(v:val)')
|
||||
return filter(range(1, bufnr('$')), 'buflisted(v:val) && getbufvar(v:val, "&filetype") != "qf"')
|
||||
endfunction
|
||||
|
||||
function! s:defaults()
|
||||
|
||||
Reference in New Issue
Block a user