From cc6c84be154f424331cd600ed9df0cde9ce3073f Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Tue, 24 Feb 2026 23:18:58 +0100 Subject: [PATCH] refactor: add flow mode keybinds to focus_terminal --- src/keybind/builtin/flow.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/keybind/builtin/flow.json b/src/keybind/builtin/flow.json index 9ce0934..3c2ad93 100644 --- a/src/keybind/builtin/flow.json +++ b/src/keybind/builtin/flow.json @@ -23,6 +23,7 @@ ["ctrl+6", "focus_split", 5], ["ctrl+7", "focus_split", 6], ["ctrl+8", "focus_split", 7], + ["ctrl+`", "focus_terminal"], ["ctrl+j", "toggle_panel"], ["ctrl+q", "quit"], ["ctrl+w", "close_split"], @@ -581,5 +582,11 @@ ["enter", "mini_mode_select"], ["backspace", "mini_mode_delete_backwards"] ] + }, + "terminal": { + "on_match_failure": "nothing", + "press": [ + ["ctrl+`", "focus_terminal"] + ] } }