@@ -1572,46 +1572,41 @@ func (m *appModel) AllBindings() []key.Binding {
15721572 bindings := []key.Binding {quitBinding , tabBinding }
15731573 bindings = append (bindings , m .tabBar .Bindings ()... )
15741574
1575- bindings = append (bindings , key .NewBinding (
1576- key .WithKeys ("ctrl+k" ),
1577- key .WithHelp ("Ctrl+k" , "commands" ),
1578- ))
1579-
1580- bindings = append (bindings , key .NewBinding (
1581- key .WithKeys ("ctrl+h" ),
1582- key .WithHelp ("Ctrl+h" , "help" ),
1583- ))
1584-
1585- // Additional global shortcuts (not in status bar, but available)
1586- bindings = append (bindings , key .NewBinding (
1587- key .WithKeys ("ctrl+y" ),
1588- key .WithHelp ("Ctrl+y" , "toggle yolo mode" ),
1589- ))
1590-
1591- bindings = append (bindings , key .NewBinding (
1592- key .WithKeys ("ctrl+o" ),
1593- key .WithHelp ("Ctrl+o" , "toggle hide tool results" ),
1594- ))
1595-
1596- bindings = append (bindings , key .NewBinding (
1597- key .WithKeys ("ctrl+s" ),
1598- key .WithHelp ("Ctrl+s" , "cycle agent" ),
1599- ))
1600-
1601- bindings = append (bindings , key .NewBinding (
1602- key .WithKeys ("ctrl+m" ),
1603- key .WithHelp ("Ctrl+m" , "model picker" ),
1604- ))
1605-
1606- bindings = append (bindings , key .NewBinding (
1607- key .WithKeys ("ctrl+x" ),
1608- key .WithHelp ("Ctrl+x" , "clear queue" ),
1609- ))
1610-
1611- bindings = append (bindings , key .NewBinding (
1612- key .WithKeys ("ctrl+z" ),
1613- key .WithHelp ("Ctrl+z" , "suspend" ),
1614- ))
1575+ // Additional global shortcuts
1576+ bindings = append (bindings ,
1577+ key .NewBinding (
1578+ key .WithKeys ("ctrl+k" ),
1579+ key .WithHelp ("Ctrl+k" , "commands" ),
1580+ ),
1581+ key .NewBinding (
1582+ key .WithKeys ("ctrl+h" ),
1583+ key .WithHelp ("Ctrl+h" , "help" ),
1584+ ),
1585+ key .NewBinding (
1586+ key .WithKeys ("ctrl+y" ),
1587+ key .WithHelp ("Ctrl+y" , "toggle yolo mode" ),
1588+ ),
1589+ key .NewBinding (
1590+ key .WithKeys ("ctrl+o" ),
1591+ key .WithHelp ("Ctrl+o" , "toggle hide tool results" ),
1592+ ),
1593+ key .NewBinding (
1594+ key .WithKeys ("ctrl+s" ),
1595+ key .WithHelp ("Ctrl+s" , "cycle agent" ),
1596+ ),
1597+ key .NewBinding (
1598+ key .WithKeys ("ctrl+m" ),
1599+ key .WithHelp ("Ctrl+m" , "model picker" ),
1600+ ),
1601+ key .NewBinding (
1602+ key .WithKeys ("ctrl+x" ),
1603+ key .WithHelp ("Ctrl+x" , "clear queue" ),
1604+ ),
1605+ key .NewBinding (
1606+ key .WithKeys ("ctrl+z" ),
1607+ key .WithHelp ("Ctrl+z" , "suspend" ),
1608+ ),
1609+ )
16151610
16161611 if ! m .leanMode {
16171612 bindings = append (bindings , key .NewBinding (
0 commit comments