From 07da058eae6f26de4cbe08c48563154e775f6183 Mon Sep 17 00:00:00 2001 From: "Kyle L. Davis" Date: Sat, 8 Oct 2022 05:20:39 -0500 Subject: [vim] Update fzf#install to handle spaces on Windows (#2993) --- plugin/fzf.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugin/fzf.vim') diff --git a/plugin/fzf.vim b/plugin/fzf.vim index 4dd7ece8..9aae66b3 100644 --- a/plugin/fzf.vim +++ b/plugin/fzf.vim @@ -143,7 +143,7 @@ function! fzf#install() if !filereadable(script) throw script.' not found' endif - let script = 'powershell -ExecutionPolicy Bypass -file ' . script + let script = 'powershell -ExecutionPolicy Bypass -file ' . shellescape(script) else let script = s:base_dir.'/install' if !executable(script) -- cgit v1.2.3