Created
July 1, 2011 03:09
-
-
Save seven1m/1057798 to your computer and use it in GitHub Desktop.
FIXED: FuzzyFinder in Vim 7.3 setting nobuflisted on some buffers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/plugin/fuzzyfinder.vim b/plugin/fuzzyfinder.vim | |
| index a717bfd..f5d42fa 100644 | |
| --- a/plugin/fuzzyfinder.vim | |
| +++ b/plugin/fuzzyfinder.vim | |
| @@ -872,6 +872,7 @@ endfunction | |
| " | |
| function! g:FuzzyFinderMode.Buffer.on_buf_enter() | |
| call self.update_buf_times() | |
| + setlocal buflisted | |
| endfunction | |
| " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment