From 9c73a19f567d1a6fa1aa3a7084d343ae0b4d7987 Mon Sep 17 00:00:00 2001 From: Alex Geana Date: Thu, 29 Dec 2016 23:11:05 +0100 Subject: [PATCH] fix bug with files and directories that have dollar sign in name --- lib/nerdtree/path.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/nerdtree/path.vim b/lib/nerdtree/path.vim index 5f3b16ad..26db4a31 100644 --- 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