minor fixes

This commit is contained in:
Alexander Navarro 2024-08-05 16:34:19 -04:00
parent 945b87e85d
commit dbccd432d9
3 changed files with 5 additions and 6 deletions

View file

@ -67,8 +67,8 @@ keymap = [
{ on = [ "D" ], run = [ "remove --permanently", "escape --visual --select" ], desc = "Permanently delete the files" },
{ on = [ "a" ], run = "create", desc = "Create a file or directory (ends with / for directories)" },
{ on = [ "r" ], run = "rename --cursor=before_ext", desc = "Rename a file or directory" },
{ on = [ ";" ], run = "shell", desc = "Run a shell command" },
{ on = [ ":" ], run = "shell --block", desc = "Run a shell command (block the UI until the command finishes)" },
{ on = [ ";" ], run = "shell --interactive", desc = "Run a shell command" },
{ on = [ ":" ], run = "shell --interactive --block", desc = "Run a shell command (block the UI until the command 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" },