summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-05-21 00:38:40 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-05-21 00:44:49 +0900
commit34946b72a5e5a3d3c5c31fef4b373dcbc7b3821f (patch)
treed79a130c1a057888c6833c8cfed51a6d641bfb2e /shell
parent1592bedbe82e2c58dcc9b990655c65a1116d1ff7 (diff)
0.9.12
Diffstat (limited to 'shell')
-rw-r--r--shell/completion.bash5
1 files changed, 3 insertions, 2 deletions
diff --git a/shell/completion.bash b/shell/completion.bash
index ac8198e9..59bdfe46 100644
--- a/shell/completion.bash
+++ b/shell/completion.bash
@@ -29,6 +29,7 @@ _fzf_opts_completion() {
+s --no-sort
--tac
--tiebreak
+ --bind
-m --multi
--no-mouse
--color
@@ -222,11 +223,11 @@ a_cmds="
x_cmds="kill ssh telnet unset unalias export"
# Preserve existing completion
-if [ "$_fzf_completion_loaded" != '0.8.6-1' ]; then
+if [ "$_fzf_completion_loaded" != '0.9.12' ]; 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 $f_cmds $a_cmds $x_cmds | sed 's/ /|/g' | sed 's/+/\\+/g'))$" | _fzf_orig_completion_filter)
- export _fzf_completion_loaded=0.8.6-1
+ export _fzf_completion_loaded=0.9.12
fi
if type _completion_loader > /dev/null 2>&1; then