Fix #114 - Escape $

This commit is contained in:
Junegunn Choi
2016-04-09 21:41:59 +09:00
parent e9187959ba
commit 7cfff6b16f

View File

@@ -42,7 +42,7 @@ function! s:chomp(str)
endfunction
function! s:escape(path)
return escape(a:path, ' %#''"\')
return escape(a:path, ' $%#''"\')
endfunction
if v:version >= 704