Handle single/double quote characters in 'dir' option

This commit is contained in:
Junegunn Choi 2015-08-16 00:08:08 +09:00
parent 1db7220e99
commit 63fc2490d8

View file

@ -32,7 +32,7 @@ function! s:strip(str)
endfunction
function! s:escape(path)
return escape(a:path, ' %#\')
return escape(a:path, ' %#''"\')
endfunction
function! s:ansi(str, col, bold)