summaryrefslogtreecommitdiff
path: root/shell/key-bindings.zsh
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2024-04-10 00:46:09 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2024-04-10 00:46:09 +0900
commit152988c17bd6c35ce55652d123db8b65a32f98e4 (patch)
treec4608597a1b9b396277255d379bd1a17a93de107 /shell/key-bindings.zsh
parent4cd37fc02b4491d4c9a5f6a27ad41895ad1a62cc (diff)
downloadfzf-152988c17bd6c35ce55652d123db8b65a32f98e4.tar.gz
[shell] Revert interactiveness checks for eval
So that there's no error even when the scripts are mistakenly evaluated in non-interactive sessions. bash -c 'eval "$(fzf --bash)"; echo done' zsh -c 'eval "$(fzf --zsh)"; echo done' * https://github.com/junegunn/fzf/pull/3675#issuecomment-2044860901 * https://github.com/junegunn/fzf/commit/f103aa4753b435f8f45c5130323effeb75583c15
Diffstat (limited to 'shell/key-bindings.zsh')
-rw-r--r--shell/key-bindings.zsh4
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/key-bindings.zsh b/shell/key-bindings.zsh
index 3614dd43..a75f4beb 100644
--- a/shell/key-bindings.zsh
+++ b/shell/key-bindings.zsh
@@ -11,7 +11,7 @@
# - $FZF_ALT_C_COMMAND
# - $FZF_ALT_C_OPTS
-[[ -o interactive ]] || return 0
+if [[ -o interactive ]]; then
# Key bindings
@@ -119,3 +119,5 @@ bindkey -M viins '^R' fzf-history-widget
eval $__fzf_key_bindings_options
'unset' '__fzf_key_bindings_options'
}
+
+fi