From 10598514ebcb1389bfc0792a61529ab9612415d2 Mon Sep 17 00:00:00 2001 From: Damien Dart Date: Mon, 9 Dec 2024 21:55:28 +0000 Subject: [PATCH] "fuzzy-finders.vim": Add some documentation. --- .vim/plugin/fuzzy-finders.vim | 7 +++++++ 1 file changed, 7 insertions(+) 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