Merge pull request #649 from alegen/master

fix bug with files and directories that have dollar sign in name
This commit is contained in:
Phil Runninger 2017-01-02 08:34:15 -05:00 committed by GitHub
commit 281701021c

View File

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