From fd5e639b17d6c12172d99ac5ca2fbbac2b0d02db Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Sun, 3 May 2026 22:13:34 +0200 Subject: [PATCH] fix yazi search --- home-modules/yazi.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home-modules/yazi.nix b/home-modules/yazi.nix index eeadbfb..38ff487 100644 --- a/home-modules/yazi.nix +++ b/home-modules/yazi.nix @@ -88,8 +88,8 @@ in { { on = ";"; run = "shell --interactive"; desc = "Run a shell command"; } { on = ":"; run = "shell --block --interactive"; desc = "Run a shell command (block until finishes)"; } { on = "."; run = "hidden toggle"; desc = "Toggle the visibility of hidden files"; } - { on = "s"; run = "search fd"; desc = "Search files by name using fd"; } - { on = "S"; run = "search rg"; desc = "Search files by content using ripgrep"; } + { on = "s"; run = "search --via=fd"; desc = "Search files by name using fd"; } + { on = "S"; run = "search --via=rg"; desc = "Search files by content using ripgrep"; } { on = ""; run = "escape --search"; desc = "Cancel the ongoing search"; } { on = "z"; run = "plugin zoxide"; desc = "Jump to a directory using zoxide"; } { on = "Z"; run = "plugin fzf"; desc = "Jump to a directory or reveal a file using fzf"; }