@@ -505,6 +505,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
505505 {
506506 title : "Toggle MCPs" ,
507507 value : "mcp.list" ,
508+ search : "toggle mcps" ,
508509 category : "Agent" ,
509510 slash : {
510511 name : "mcps" ,
@@ -611,6 +612,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
611612 {
612613 title : mode ( ) === "dark" ? "Switch to light mode" : "Switch to dark mode" ,
613614 value : "theme.switch_mode" ,
615+ search : "toggle appearance" ,
614616 onSelect : ( dialog ) => {
615617 setMode ( mode ( ) === "dark" ? "light" : "dark" )
616618 dialog . clear ( )
@@ -659,6 +661,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
659661 } ,
660662 {
661663 title : "Toggle debug panel" ,
664+ search : "toggle debug" ,
662665 category : "System" ,
663666 value : "app.debug" ,
664667 onSelect : ( dialog ) => {
@@ -668,6 +671,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
668671 } ,
669672 {
670673 title : "Toggle console" ,
674+ search : "toggle console" ,
671675 category : "System" ,
672676 value : "app.console" ,
673677 onSelect : ( dialog ) => {
@@ -709,6 +713,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
709713 {
710714 title : terminalTitleEnabled ( ) ? "Disable terminal title" : "Enable terminal title" ,
711715 value : "terminal.title.toggle" ,
716+ search : "toggle terminal title" ,
712717 keybind : "terminal_title_toggle" ,
713718 category : "System" ,
714719 onSelect : ( dialog ) => {
@@ -724,6 +729,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
724729 {
725730 title : kv . get ( "animations_enabled" , true ) ? "Disable animations" : "Enable animations" ,
726731 value : "app.toggle.animations" ,
732+ search : "toggle animations" ,
727733 category : "System" ,
728734 onSelect : ( dialog ) => {
729735 kv . set ( "animations_enabled" , ! kv . get ( "animations_enabled" , true ) )
@@ -767,6 +773,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
767773 {
768774 title : kv . get ( "diff_wrap_mode" , "word" ) === "word" ? "Disable diff wrapping" : "Enable diff wrapping" ,
769775 value : "app.toggle.diffwrap" ,
776+ search : "toggle diff wrapping" ,
770777 category : "System" ,
771778 onSelect : ( dialog ) => {
772779 const current = kv . get ( "diff_wrap_mode" , "word" )
0 commit comments