summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorTiziano Santoro <tzn@google.com>2015-05-11 00:29:44 +0100
committerJunegunn Choi <junegunn.c@gmail.com>2015-05-11 10:18:16 +0900
commit14fbe06d9e598b00d3dd05f7732f0e46ce205292 (patch)
tree3b2d091c41f59d04fa51116ac17902bc9d9895ea /shell
parent64949bf467d172accf2c060dce562ead736535aa (diff)
[zsh-completion] Allow specifying empty completion trigger. (#230)
Diffstat (limited to 'shell')
-rw-r--r--shell/completion.zsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/completion.zsh b/shell/completion.zsh
index c9c3276f..0e43d1c1 100644
--- a/shell/completion.zsh
+++ b/shell/completion.zsh
@@ -109,7 +109,7 @@ fzf-zsh-completion() {
fi
cmd=${tokens[1]}
- trigger=${FZF_COMPLETION_TRIGGER:-**}
+ trigger=${FZF_COMPLETION_TRIGGER-'**'}
# Trigger sequence given
tail=${LBUFFER:$(( ${#LBUFFER} - ${#trigger} ))}