feat(tui): shift+tab to cycle modes backward (#1049)

This commit is contained in:
Adi Yeroslav
2025-07-16 15:43:48 +03:00
committed by GitHub
parent add81b9739
commit 57d1a60efc
6 changed files with 35 additions and 6 deletions

View File

@@ -560,6 +560,8 @@ type Keybinds struct {
SessionUnshare string `json:"session_unshare,required"`
// Switch mode
SwitchMode string `json:"switch_mode,required"`
// Switch mode reverse
SwitchModeReverse string `json:"switch_mode_reverse,required"`
// List available themes
ThemeList string `json:"theme_list,required"`
// Toggle tool details
@@ -601,6 +603,7 @@ type keybindsJSON struct {
SessionShare apijson.Field
SessionUnshare apijson.Field
SwitchMode apijson.Field
SwitchModeReverse apijson.Field
ThemeList apijson.Field
ToolDetails apijson.Field
raw string