summaryrefslogtreecommitdiffstats
path: root/plugin
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-09-18 09:59:40 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-09-18 09:59:40 +0900
commit8764be07e2c97b667bd8437417e0a592082a918d (patch)
tree921588c739295912c6bf1a1f89ee5b7f97c4cb92 /plugin
parent2022a3ad96f027e056e4fcce11fee0976db657d1 (diff)
[vim] Ignore exit status of 2 (#345)
Diffstat (limited to 'plugin')
-rw-r--r--plugin/fzf.vim2
1 files changed, 1 insertions, 1 deletions
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