From c351e54479594120c13335c24e1ac7729c810c5c Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Tue, 7 Mar 2023 13:55:12 -0500 Subject: [PATCH] unify ctrl-r control --- zsh/funcs/sk_bindings | 2 +- zsh/zshrc | 17 +++++++++-------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/zsh/funcs/sk_bindings b/zsh/funcs/sk_bindings index d703afd..2d30133 100644 --- a/zsh/funcs/sk_bindings +++ b/zsh/funcs/sk_bindings @@ -1,5 +1,5 @@ #!/usr/bin/env zsh -if [[ ${MCFLY_USED} != 1 ]]; then +if [[ "${CTRL_R_PICKER}" == "skim" ]]; then if zmodload zsh/parameter 2>/dev/null && (( ${+options} )); then __skim_key_bindings_options="options=(${(j: :)${(kv)options[@]}})" else diff --git a/zsh/zshrc b/zsh/zshrc index c7a1bfa..efbc715 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -151,15 +151,16 @@ if [[ -d $HOME/.anyenv ]]; then fi fi -# if [[ $(_command-exists mcfly) -eq 0 ]]; then -# znap eval mcfly 'mcfly init zsh' -# export MCFLY_KEY_SCHEME=vim -# export MCFLY_FUZZY=true -# export MCFLY_RESULTS=50 -# export MCFLY_USED=1 -# fi +CTRL_R_PICKER="atuin" +if [[ "${CTRL_R_PICKER}" == "mcfly" ]]; then + znap eval mcfly 'mcfly init zsh' + export MCFLY_KEY_SCHEME=vim + export MCFLY_FUZZY=true + export MCFLY_RESULTS=50 + export MCFLY_USED=1 +fi -if [[ $(_command-exists atuin) -eq 0 ]]; then +if [[ "${CTRL_R_PICKER}" == "atuin" ]]; then znap eval atuin 'atuin init zsh' fi