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"; }