commit 9c73a19f567d1a6fa1aa3a7084d343ae0b4d7987
parent eee431dbd44111c858c6d33ffd366cae1f17f8b3
Author: Alex Geana <alex@alegen.net>
Date: Thu, 29 Dec 2016 23:11:05 +0100
fix bug with files and directories that have dollar sign in name
Diffstat:
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