nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit 281701021c5001332a862da80175bf585d24e2e8
parent eee431dbd44111c858c6d33ffd366cae1f17f8b3
Author: Phil Runninger <PhilRunninger@users.noreply.github.com>
Date:   Mon,  2 Jan 2017 08:34:15 -0500

Merge pull request #649 from alegen/master

fix bug with files and directories that have dollar sign in name
Diffstat:
Mlib/nerdtree/path.vim | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/nerdtree/path.vim b/lib/nerdtree/path.vim
@@ -301,10 +301,10 @@ endfunction
 "FUNCTION: Path._escChars() {{{1
 function! s:Path._escChars()
     if nerdtree#runningWindows()
-        return " `\|\"#%&,?()\*^<>"
+        return " `\|\"#%&,?()\*^<>$"
     endif
 
-    return " \\`\|\"#%&,?()\*^<>[]"
+    return " \\`\|\"#%&,?()\*^<>[]$"
 endfunction
 
 "FUNCTION: Path.getDir() {{{1