@@ -509,6 +509,7 @@ export function Session() {
509509 {
510510 title : sidebarVisible ( ) ? "Hide sidebar" : "Show sidebar" ,
511511 value : "session.sidebar.toggle" ,
512+ search : "toggle sidebar" ,
512513 keybind : "sidebar_toggle" ,
513514 category : "Session" ,
514515 onSelect : ( dialog ) => {
@@ -523,6 +524,7 @@ export function Session() {
523524 {
524525 title : conceal ( ) ? "Disable code concealment" : "Enable code concealment" ,
525526 value : "session.toggle.conceal" ,
527+ search : "toggle code concealment" ,
526528 keybind : "messages_toggle_conceal" as any ,
527529 category : "Session" ,
528530 onSelect : ( dialog ) => {
@@ -533,6 +535,7 @@ export function Session() {
533535 {
534536 title : showTimestamps ( ) ? "Hide timestamps" : "Show timestamps" ,
535537 value : "session.toggle.timestamps" ,
538+ search : "toggle timestamps" ,
536539 category : "Session" ,
537540 slash : {
538541 name : "timestamps" ,
@@ -546,6 +549,7 @@ export function Session() {
546549 {
547550 title : showThinking ( ) ? "Hide thinking" : "Show thinking" ,
548551 value : "session.toggle.thinking" ,
552+ search : "toggle thinking" ,
549553 keybind : "display_thinking" ,
550554 category : "Session" ,
551555 slash : {
@@ -560,6 +564,7 @@ export function Session() {
560564 {
561565 title : showDetails ( ) ? "Hide tool details" : "Show tool details" ,
562566 value : "session.toggle.actions" ,
567+ search : "toggle tool details" ,
563568 keybind : "tool_details" ,
564569 category : "Session" ,
565570 onSelect : ( dialog ) => {
@@ -568,8 +573,9 @@ export function Session() {
568573 } ,
569574 } ,
570575 {
571- title : "Toggle session scrollbar",
576+ title : showScrollbar ( ) ? "Hide session scrollbar" : "Show session scrollbar",
572577 value : "session.toggle.scrollbar" ,
578+ search : "toggle session scrollbar" ,
573579 keybind : "scrollbar_toggle" ,
574580 category : "Session" ,
575581 onSelect : ( dialog ) => {
0 commit comments