Add curly braces to the list of characters to be escaped. (#1128)

* Add curly braces to the list of characters to be escaped.

* Update version number in change log.
This commit is contained in:
Phil Runninger
2020-05-26 00:15:17 -04:00
committed by GitHub
parent f63132cade
commit 052b1f00a0
2 changed files with 2 additions and 1 deletions

View File

@@ -332,7 +332,7 @@ function! s:Path._escChars()
return " `\|\"#%&,?()\*^<>$"
endif
return " \\`\|\"#%&,?()\*^<>[]$"
return " \\`\|\"#%&,?()\*^<>[]{}$"
endfunction
" FUNCTION: Path.getDir() {{{1