Skip to content
Snippets Groups Projects
Commit ac160f98 authored by Junegunn Choi's avatar Junegunn Choi
Browse files

[gvim] Fix #342 - Should not escape launcher part of the command

parent 62e01a2a
No related branches found
No related tags found
No related merge requests found
......@@ -217,14 +217,15 @@ let s:launcher = function('s:xterm_launcher')
function! s:execute(dict, command, temps)
call s:pushd(a:dict)
silent! !clear 2> /dev/null
let escaped = escape(substitute(a:command, '\n', '\\n', 'g'), '%#')
if has('gui_running')
let Launcher = get(a:dict, 'launcher', get(g:, 'Fzf_launcher', get(g:, 'fzf_launcher', s:launcher)))
let fmt = type(Launcher) == 2 ? call(Launcher, []) : Launcher
let command = printf(fmt, "'".substitute(a:command, "'", "'\"'\"'", 'g')."'")
let command = printf(fmt, "'".substitute(escaped, "'", "'\"'\"'", 'g')."'")
else
let command = a:command
let command = escaped
endif
execute 'silent !'.escape(substitute(command, '\n', '\\n', 'g'), '%#')
execute 'silent !'.command
redraw!
if v:shell_error
" Do not print error message on exit status 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment