Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
dotfiles/vim/plugin/nerdtree_find_if_findable.vim
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
17 lines (15 sloc)
530 Bytes
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
" I too often trigger NERDTreeFind after opening a project, which reveals | |
" the project dir and thus shows the parent dir, when I wanted to just | |
" show the tree. This plugin fixes that. | |
" | |
" By Henrik Nyh <http://henrik.nyh.se> under the MIT license. | |
function! s:NERDTreeFindIfFindable() | |
if len(expand("%")) | |
" If current buffer has name, find it. | |
NERDTreeFind | |
else | |
" If current buffer is unsaved, just show tree. | |
NERDTree | |
endif | |
endfunction | |
command! NERDTreeFindIfFindable call <SID>NERDTreeFindIfFindable() |