Skip to content

Commit

Permalink
Merge pull request #649 from alegen/master
Browse files Browse the repository at this point in the history
fix bug with files and directories that have dollar sign in name
  • Loading branch information
PhilRunninger authored Jan 2, 2017
2 parents eee431d + 9c73a19 commit 2817010
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/nerdtree/path.vim
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2817010

Please sign in to comment.