Change the type of completion used by NERDTreeFind

This command should complete file names, not directories.

Fixes #780.
This commit is contained in:
Jason Franklin 2017-12-12 08:22:07 -05:00
parent 461ea6d2d8
commit b4b99c39fa

View File

@ -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