diff --git a/.vim/plugin/fuzzy-finders.vim b/.vim/plugin/fuzzy-finders.vim index 85ca675..a481994 100644 --- a/.vim/plugin/fuzzy-finders.vim +++ b/.vim/plugin/fuzzy-finders.vim @@ -1,3 +1,7 @@ +" Fuzzy finder wrappers. +" +" See the "fuzzy-*" scripts in "$TOOLBOX_ROOT/bin" for more information. +" " This file was written by Damien Dart, . This is " free and unencumbered software released into the public domain. For " more information, please refer to the accompanying "UNLICENCE" file. @@ -185,6 +189,9 @@ function! s:ToQuickfix(line) \ } endfunction +" Hide unneccesary Vim chrome when displaying fuzzy finders in a split +" window to make it look a little tidier. This is based on +" . autocmd FileType fuzzyfinder let b:laststatus = &laststatus \| set laststatus=0 noshowmode noruler \| autocmd BufLeave set showmode ruler