@@ -553,6 +553,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
553553 {
554554 title : "Toggle MCPs" ,
555555 value : "mcp.list" ,
556+ search : "toggle mcps" ,
556557 category : "Agent" ,
557558 slash : {
558559 name : "mcps" ,
@@ -657,8 +658,9 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
657658 category : "System" ,
658659 } ,
659660 {
660- title : "Toggle theme mode",
661+ title : mode ( ) === "dark" ? "Light mode" : "Dark mode",
661662 value : "theme.switch_mode" ,
663+ search : "toggle appearance" ,
662664 onSelect : ( dialog ) => {
663665 setMode ( mode ( ) === "dark" ? "light" : "dark" )
664666 dialog . clear ( )
@@ -707,6 +709,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
707709 } ,
708710 {
709711 title : "Toggle debug panel" ,
712+ search : "toggle debug" ,
710713 category : "System" ,
711714 value : "app.debug" ,
712715 onSelect : ( dialog ) => {
@@ -716,6 +719,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
716719 } ,
717720 {
718721 title : "Toggle console" ,
722+ search : "toggle console" ,
719723 category : "System" ,
720724 value : "app.console" ,
721725 onSelect : ( dialog ) => {
@@ -757,6 +761,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
757761 {
758762 title : terminalTitleEnabled ( ) ? "Disable terminal title" : "Enable terminal title" ,
759763 value : "terminal.title.toggle" ,
764+ search : "toggle terminal title" ,
760765 keybind : "terminal_title_toggle" ,
761766 category : "System" ,
762767 onSelect : ( dialog ) => {
@@ -772,6 +777,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
772777 {
773778 title : kv . get ( "animations_enabled" , true ) ? "Disable animations" : "Enable animations" ,
774779 value : "app.toggle.animations" ,
780+ search : "toggle animations" ,
775781 category : "System" ,
776782 onSelect : ( dialog ) => {
777783 kv . set ( "animations_enabled" , ! kv . get ( "animations_enabled" , true ) )
@@ -781,6 +787,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
781787 {
782788 title : kv . get ( "diff_wrap_mode" , "word" ) === "word" ? "Disable diff wrapping" : "Enable diff wrapping" ,
783789 value : "app.toggle.diffwrap" ,
790+ search : "toggle diff wrapping" ,
784791 category : "System" ,
785792 onSelect : ( dialog ) => {
786793 const current = kv . get ( "diff_wrap_mode" , "word" )
@@ -789,7 +796,9 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
789796 } ,
790797 } ,
791798 {
792- title : kv . get ( "clear_prompt_save_history" , false ) ? "Don't include cleared prompts in history" : "Include cleared prompts in history" ,
799+ title : kv . get ( "clear_prompt_save_history" , false )
800+ ? "Don't include cleared prompts in history"
801+ : "Include cleared prompts in history" ,
793802 value : "app.toggle.clear_prompt_history" ,
794803 category : "System" ,
795804 onSelect : ( dialog ) => {
0 commit comments