From ee7a3ed2ced9b8bfc4ed46b9daf185f21cd6657e Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Wed, 25 Feb 2026 11:20:03 +0100 Subject: [PATCH] refactor(terminal): add more terminal mode keybinds --- src/keybind/builtin/flow.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/keybind/builtin/flow.json b/src/keybind/builtin/flow.json index 3c2ad93..6cd5363 100644 --- a/src/keybind/builtin/flow.json +++ b/src/keybind/builtin/flow.json @@ -586,7 +586,17 @@ "terminal": { "on_match_failure": "nothing", "press": [ - ["ctrl+`", "focus_terminal"] + ["ctrl+1", "focus_split", 0], + ["ctrl+2", "focus_split", 1], + ["ctrl+3", "focus_split", 2], + ["ctrl+4", "focus_split", 3], + ["ctrl+5", "focus_split", 4], + ["ctrl+6", "focus_split", 5], + ["ctrl+7", "focus_split", 6], + ["ctrl+8", "focus_split", 7], + ["ctrl+`", "focus_terminal"], + ["ctrl+j", "toggle_panel"], + ["alt+f9", "panel_next_widget_style"] ] } }