From e3cac09d60a87c9aab3ea9750ad10a662e461adf Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Wed, 2 Sep 2015 19:10:49 +0900 Subject: [PATCH] Ignore __Tagbar__ buffer --- plugin/fzf.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/fzf.vim b/plugin/fzf.vim index 6b94f6a..8607560 100644 --- a/plugin/fzf.vim +++ b/plugin/fzf.vim @@ -232,7 +232,7 @@ command! -bang -nargs=1 Locate call s:fzf({ function! s:all_files() return extend( \ filter(reverse(copy(v:oldfiles)), - \ "v:val !~ 'fugitive:\\|NERD_tree\\|^/tmp/\\|.git/'"), + \ "v:val !~ 'fugitive:\\|__Tagbar__\\|NERD_tree\\|^/tmp/\\|.git/'"), \ filter(map(s:buflisted(), 'bufname(v:val)'), '!empty(v:val)')) endfunction