@@ -569,6 +569,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
569569 {
570570 title : "Toggle MCPs" ,
571571 value : "mcp.list" ,
572+ search : "toggle mcps" ,
572573 category : "Agent" ,
573574 slash : {
574575 name : "mcps" ,
@@ -673,8 +674,9 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
673674 category : "System" ,
674675 } ,
675676 {
676- title : "Toggle theme mode",
677+ title : mode ( ) === "dark" ? "Light mode" : "Dark mode",
677678 value : "theme.switch_mode" ,
679+ search : "toggle appearance" ,
678680 onSelect : ( dialog ) => {
679681 setMode ( mode ( ) === "dark" ? "light" : "dark" )
680682 dialog . clear ( )
@@ -723,6 +725,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
723725 } ,
724726 {
725727 title : "Toggle debug panel" ,
728+ search : "toggle debug" ,
726729 category : "System" ,
727730 value : "app.debug" ,
728731 onSelect : ( dialog ) => {
@@ -732,6 +735,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
732735 } ,
733736 {
734737 title : "Toggle console" ,
738+ search : "toggle console" ,
735739 category : "System" ,
736740 value : "app.console" ,
737741 onSelect : ( dialog ) => {
@@ -773,6 +777,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
773777 {
774778 title : terminalTitleEnabled ( ) ? "Disable terminal title" : "Enable terminal title" ,
775779 value : "terminal.title.toggle" ,
780+ search : "toggle terminal title" ,
776781 keybind : "terminal_title_toggle" ,
777782 category : "System" ,
778783 onSelect : ( dialog ) => {
@@ -788,6 +793,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
788793 {
789794 title : kv . get ( "animations_enabled" , true ) ? "Disable animations" : "Enable animations" ,
790795 value : "app.toggle.animations" ,
796+ search : "toggle animations" ,
791797 category : "System" ,
792798 onSelect : ( dialog ) => {
793799 kv . set ( "animations_enabled" , ! kv . get ( "animations_enabled" , true ) )
@@ -797,6 +803,7 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
797803 {
798804 title : kv . get ( "diff_wrap_mode" , "word" ) === "word" ? "Disable diff wrapping" : "Enable diff wrapping" ,
799805 value : "app.toggle.diffwrap" ,
806+ search : "toggle diff wrapping" ,
800807 category : "System" ,
801808 onSelect : ( dialog ) => {
802809 const current = kv . get ( "diff_wrap_mode" , "word" )
@@ -805,7 +812,9 @@ function App(props: { onSnapshot?: () => Promise<string[]> }) {
805812 } ,
806813 } ,
807814 {
808- title : kv . get ( "clear_prompt_save_history" , false ) ? "Don't include cleared prompts in history" : "Include cleared prompts in history" ,
815+ title : kv . get ( "clear_prompt_save_history" , false )
816+ ? "Don't include cleared prompts in history"
817+ : "Include cleared prompts in history" ,
809818 value : "app.toggle.clear_prompt_history" ,
810819 category : "System" ,
811820 onSelect : ( dialog ) => {
0 commit comments