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

[vim] Display proper error message when GVim launcher failed

parent 98d2bfa0
No related branches found
No related tags found
No related merge requests found
......@@ -213,7 +213,7 @@ endfunction
function! s:xterm_launcher()
let fmt = 'xterm -T "[fzf]" -bg "\%s" -fg "\%s" -geometry %dx%d+%d+%d -e bash -ic %%s'
if has('gui_macvim')
let fmt .= '; osascript -e "tell application \"MacVim\" to activate"'
let fmt .= '&& osascript -e "tell application \"MacVim\" to activate"'
endif
return printf(fmt,
\ synIDattr(hlID("Normal"), "bg"), synIDattr(hlID("Normal"), "fg"),
......@@ -237,7 +237,7 @@ function! s:execute(dict, command, temps)
redraw!
if v:shell_error
" Do not print error message on exit status 1 (no match) or 130 (interrupt)
if v:shell_error == 2
if index([1, 130], v:shell_error) < 0
call s:error('Error running ' . command)
endif
return []
......
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