diff options
| author | Junegunn Choi <junegunn.c@gmail.com> | 2015-10-02 11:02:19 +0900 |
|---|---|---|
| committer | Junegunn Choi <junegunn.c@gmail.com> | 2015-10-02 11:02:19 +0900 |
| commit | 7c7a30c472463e0115adcf8bc2a792b48c03bf08 (patch) | |
| tree | 9f4e63057538fff39ad3df382621f465232b5731 /shell | |
| parent | 6a38d07a4cb49d60d4782656fdb861a8ddbf3ecb (diff) | |
| parent | ea271cd4e2b0cb3f6e8a959f54401941ac6f1d87 (diff) | |
| download | fzf-7c7a30c472463e0115adcf8bc2a792b48c03bf08.tar.gz | |
Merge pull request #364 from halostatue/use-zsh-regex-module
Remove dependency on zsh/pcre module
Diffstat (limited to 'shell')
| -rw-r--r-- | shell/key-bindings.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/key-bindings.zsh b/shell/key-bindings.zsh index 735aa501..27810d32 100644 --- a/shell/key-bindings.zsh +++ b/shell/key-bindings.zsh @@ -1,6 +1,6 @@ # Key bindings # ------------ -if [[ $- =~ i ]]; then +if [[ $- == *i* ]]; then # CTRL-T - Paste the selected file path(s) into the command line __fsel() { |
