From 7727ad43afb57cb325439590a9a6bad94601a720 Mon Sep 17 00:00:00 2001 From: Junegunn Choi <junegunn.c@gmail.com> Date: Tue, 18 Jul 2017 16:33:58 +0900 Subject: [PATCH] [vim] Use fnameescape to escape command line arguments Fix https://github.com/junegunn/fzf.vim/issues/404 Thanks to @janlazo. --- plugin/fzf.vim | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/plugin/fzf.vim b/plugin/fzf.vim index 24427bed..3beb5be3 100644 --- a/plugin/fzf.vim +++ b/plugin/fzf.vim @@ -149,13 +149,8 @@ function! s:tmux_enabled() endfunction function! s:escape(path) - let escaped_chars = '$%#''"' - - if has('unix') - let escaped_chars .= ' \' - endif - - return escape(a:path, escaped_chars) + let path = fnameescape(a:path) + return s:is_win ? escape(path, '$') : path endfunction " Upgrade legacy options -- GitLab