From 18b705b718ede5a6645149eec5fb5b9a01f461c5 Mon Sep 17 00:00:00 2001 From: thek4n Date: Mon, 27 Jan 2025 11:48:39 +0300 Subject: [PATCH] style --- home/user/.config/zsh/mappings | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/home/user/.config/zsh/mappings b/home/user/.config/zsh/mappings index ad8a4ce..20593fd 100644 --- a/home/user/.config/zsh/mappings +++ b/home/user/.config/zsh/mappings @@ -93,7 +93,17 @@ bindkey -M vicmd "^O" cddotdot fzfhistory() { - LBUFFER="$(history -n 0 | fzf --tac --no-multi --no-sort --height="$(($LINES/4))" --query="$BUFFER")" + LBUFFER="$( \ + history -n 0 | \ + fzf \ + --ignore-case \ + --scheme=history \ + --tac \ + --no-multi \ + --no-sort \ + --height="$(($LINES/4))" \ + --query="$BUFFER" \ + )" zle reset-prompt } zle -N fzfhistory