commit b4b99c39fa4d22b355445034db44f4abfaf5cbe8
parent 461ea6d2d854100f7954c21453bb3b926ad930e6
Author: Jason Franklin <j_fra@fastmail.us>
Date: Tue, 12 Dec 2017 08:22:07 -0500
Change the type of completion used by NERDTreeFind
This command should complete file names, not directories.
Fixes #780.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/autoload/nerdtree/ui_glue.vim b/autoload/nerdtree/ui_glue.vim
@@ -593,7 +593,7 @@ function! nerdtree#ui_glue#setupCommands()
command! -n=0 -bar NERDTreeClose :call g:NERDTree.Close()
command! -n=1 -complete=customlist,nerdtree#completeBookmarks -bar NERDTreeFromBookmark call g:NERDTreeCreator.CreateTabTree('<args>')
command! -n=0 -bar NERDTreeMirror call g:NERDTreeCreator.CreateMirror()
- command! -n=? -complete=dir -bar NERDTreeFind call s:findAndRevealPath('<args>')
+ command! -n=? -complete=file -bar NERDTreeFind call s:findAndRevealPath('<args>')
command! -n=0 -bar NERDTreeFocus call NERDTreeFocus()
command! -n=0 -bar NERDTreeCWD call NERDTreeCWD()
endfunction