-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
"fuzzy-finders.vim": Add some documentation.
- Loading branch information
1 parent
4decfd5
commit 1059851
Showing
1 changed file
with
7 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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, <[email protected]>. 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 | ||
" <https://github.com/junegunn/fzf/blob/master/README-VIM.md#hide-statusline>. | ||
autocmd FileType fuzzyfinder let b:laststatus = &laststatus | ||
\| set laststatus=0 noshowmode noruler | ||
\| autocmd BufLeave <buffer> set showmode ruler | ||
|