From 150433be29343fda443781372e4e4c65fe6471f7 Mon Sep 17 00:00:00 2001 From: William Date: Wed, 15 Apr 2026 15:21:25 -0300 Subject: [PATCH] zsh: hisory serach prefix --- aspects/base/zsh.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/aspects/base/zsh.nix b/aspects/base/zsh.nix index 18d7ff6..3f28609 100644 --- a/aspects/base/zsh.nix +++ b/aspects/base/zsh.nix @@ -32,6 +32,9 @@ # Expand !! and !$ on space (Fish-style) bindkey ' ' magic-space setopt HIST_VERIFY + # History prefix search with up/down arrows + bindkey "^[[A" history-search-backward + bindkey "^[[B" history-search-forward # Fish-style Ctrl+Backspace: delete one path segment at a time function backward-kill-path-component() { if [[ "$LBUFFER" == */ ]]; then