From 5a098dd864694bb029340aa7beed7952cc4387f8 Mon Sep 17 00:00:00 2001 From: Paul Horn Date: Tue, 12 Sep 2023 15:50:40 +0200 Subject: [PATCH] fix: swap description for search commands (#141) --- config/preset/keymap.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/preset/keymap.toml b/config/preset/keymap.toml index cb92d6d4a..38f6562b8 100644 --- a/config/preset/keymap.toml +++ b/config/preset/keymap.toml @@ -52,8 +52,8 @@ keymap = [ { on = [ ";" ], exec = "shell", desc = "Run a shell command" }, { on = [ ":" ], exec = "shell --block", desc = "Run a shell command (block the UI until the command finishes)" }, { on = [ "." ], exec = "hidden toggle", desc = "Toggle the visibility of hidden files" }, - { on = [ "s" ], exec = "search fd", desc = "Search files by content using ripgrep" }, - { on = [ "S" ], exec = "search rg", desc = "Search files by name using fd" }, + { on = [ "s" ], exec = "search fd", desc = "Search files by name using fd" }, + { on = [ "S" ], exec = "search rg", desc = "Search files by content using ripgrep" }, { on = [ "" ], exec = "search none", desc = "Cancel the ongoing search" }, { on = [ "z" ], exec = "jump zoxide", desc = "Jump to a directory using zoxide" }, { on = [ "Z" ], exec = "jump fzf", desc = "Jump to a directory, or reveal a file using fzf" },