From c271a522cf49fab76593cf44f10994a108fac5f2 Mon Sep 17 00:00:00 2001 From: pika Date: Mon, 9 Dec 2024 16:05:47 +0100 Subject: [PATCH] addet bugfixed hotkey --- keymap.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/keymap.toml b/keymap.toml index e21f5fc..22fb74d 100644 --- a/keymap.toml +++ b/keymap.toml @@ -10,7 +10,6 @@ keymap = [ { on = "q", run = "quit", desc = "Exit the process" }, { on = "Q", run = "quit --no-cwd-file", desc = "Exit the process without writing cwd-file" }, { on = "", run = "close", desc = "Close the current tab, or quit if it is last tab" }, - { on = "", run = "suspend", desc = "Suspend the process" }, # Hopping { on = "k", run = "arrow -1", desc = "Move cursor up" }, @@ -73,7 +72,7 @@ keymap = [ { on = "r", run = "rename --cursor=before_ext", desc = "Rename selected file(s)" }, { 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 = "", 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 = "", run = "escape --search", desc = "Cancel the ongoing search" },