Skip to content

Commit

Permalink
fix: swap description for search commands (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
knutwalker authored Sep 12, 2023
1 parent b5db6da commit 5a098dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/preset/keymap.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [ "<C-s>" ], 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" },
Expand Down

0 comments on commit 5a098dd

Please sign in to comment.