[vim] Update fzf#install to handle spaces on Windows (#2993)

pull/2997/head
Kyle L. Davis 2 years ago committed by GitHub
parent cefa6b9878
commit 07da058eae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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)

Loading…
Cancel
Save