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
commit 57d1a60efc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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