From 53ed74f2b947c005c15c678ad45719ff6011084b Mon Sep 17 00:00:00 2001 From: Marco Thomas Date: Wed, 10 Apr 2024 01:15:25 +0200 Subject: [PATCH] fix(shell): dont fzf fuzzy match --- files/shell/.bashrc | 1 + files/shell/.shellrc.alias | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/files/shell/.bashrc b/files/shell/.bashrc index 00b4b77..4476a45 100644 --- a/files/shell/.bashrc +++ b/files/shell/.bashrc @@ -53,6 +53,7 @@ __prompt_command() { } # ============================== Jump Words +stty -ixon # enable forward search with C-s bind '"\en": forward-word' bind '"\ep": backward-word' diff --git a/files/shell/.shellrc.alias b/files/shell/.shellrc.alias index ac65d5e..9cba795 100644 --- a/files/shell/.shellrc.alias +++ b/files/shell/.shellrc.alias @@ -11,7 +11,7 @@ alias mv='mv -i' alias rm='rm -i' ### Git fun -alias gbl='git show $(git ls-files | fzf --reverse --bind "enter:become(git blame {1} | fzf --ansi --reverse | cut -f 1 -d \" \")")' +alias gbl='git show $(git ls-files | fzf -e --reverse --bind "enter:become(git blame {1} | fzf -e --ansi --reverse | cut -f 1 -d \" \")")' ### Abbreviations alias dcr='dc down && dc up -d && dc logs -f'