mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2025-01-09 17:53:56 +00:00
[vim] Display proper error message when GVim launcher failed
Related: https://github.com/junegunn/fzf.vim/issues/16
This commit is contained in:
parent
98d2bfa0db
commit
86306dd45a
@ -213,7 +213,7 @@ endfunction
|
|||||||
function! s:xterm_launcher()
|
function! s:xterm_launcher()
|
||||||
let fmt = 'xterm -T "[fzf]" -bg "\%s" -fg "\%s" -geometry %dx%d+%d+%d -e bash -ic %%s'
|
let fmt = 'xterm -T "[fzf]" -bg "\%s" -fg "\%s" -geometry %dx%d+%d+%d -e bash -ic %%s'
|
||||||
if has('gui_macvim')
|
if has('gui_macvim')
|
||||||
let fmt .= '; osascript -e "tell application \"MacVim\" to activate"'
|
let fmt .= '&& osascript -e "tell application \"MacVim\" to activate"'
|
||||||
endif
|
endif
|
||||||
return printf(fmt,
|
return printf(fmt,
|
||||||
\ synIDattr(hlID("Normal"), "bg"), synIDattr(hlID("Normal"), "fg"),
|
\ synIDattr(hlID("Normal"), "bg"), synIDattr(hlID("Normal"), "fg"),
|
||||||
@ -237,7 +237,7 @@ function! s:execute(dict, command, temps)
|
|||||||
redraw!
|
redraw!
|
||||||
if v:shell_error
|
if v:shell_error
|
||||||
" Do not print error message on exit status 1 (no match) or 130 (interrupt)
|
" 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)
|
call s:error('Error running ' . command)
|
||||||
endif
|
endif
|
||||||
return []
|
return []
|
||||||
|
Loading…
Reference in New Issue
Block a user