summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2016-02-07 10:56:29 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2016-02-07 11:00:10 +0900
commit40d934e378ec2072c9d807f7ca1fca73bda1d13d (patch)
treef624a24cbcf1929409d9a1008436018a17ac2340 /shell
parente95d82748fc8fe5a05d93b30388ba37adb7dbac8 (diff)
0.11.30.11.3
Diffstat (limited to 'shell')
-rw-r--r--shell/completion.bash4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/completion.bash b/shell/completion.bash
index 35b49a1e..05b4ef30 100644
--- a/shell/completion.bash
+++ b/shell/completion.bash
@@ -260,11 +260,11 @@ a_cmds="
x_cmds="kill ssh telnet unset unalias export"
# Preserve existing completion
-if [ "$_fzf_completion_loaded" != '0.10.8' ]; then
+if [ "$_fzf_completion_loaded" != '0.11.3' ]; then
# Really wish I could use associative array but OSX comes with bash 3.2 :(
eval $(complete | \grep '\-F' | \grep -v _fzf_ |
\grep -E " ($(echo $d_cmds $a_cmds $x_cmds | sed 's/ /|/g' | sed 's/+/\\+/g'))$" | _fzf_orig_completion_filter)
- export _fzf_completion_loaded=0.10.8
+ export _fzf_completion_loaded=0.11.3
fi
if type _completion_loader > /dev/null 2>&1; then