refactor: add flow mode keybinds to focus_terminal

This commit is contained in:
CJ van den Berg 2026-02-24 23:18:58 +01:00
parent 341c652333
commit cc6c84be15
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -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"]
]
}
}