From 8764be07e2c97b667bd8437417e0a592082a918d Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Fri, 18 Sep 2015 09:59:40 +0900 Subject: [vim] Ignore exit status of 2 (#345) --- plugin/fzf.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugin') diff --git a/plugin/fzf.vim b/plugin/fzf.vim index eea1ffd3..e6aecf40 100644 --- a/plugin/fzf.vim +++ b/plugin/fzf.vim @@ -229,7 +229,7 @@ function! s:execute(dict, command, temps) redraw! if v:shell_error " Do not print error message on exit status 1 - if v:shell_error > 1 + if v:shell_error > 2 echohl ErrorMsg echo 'Error running ' . command endif -- cgit v1.2.3