@@ -654,6 +654,8 @@ export function Session() {
654654 {
655655 title : sidebarVisible ( ) ? "Hide sidebar" : "Show sidebar" ,
656656 value : "session.sidebar.toggle" ,
657+ search : "toggle sidebar" ,
658+ keybind : "sidebar_toggle" ,
657659 category : "Session" ,
658660 run : ( ) => {
659661 batch ( ( ) => {
@@ -667,6 +669,8 @@ export function Session() {
667669 {
668670 title : conceal ( ) ? "Disable code concealment" : "Enable code concealment" ,
669671 value : "session.toggle.conceal" ,
672+ search : "toggle code concealment" ,
673+ keybind : "messages_toggle_conceal" as any ,
670674 category : "Session" ,
671675 run : ( ) => {
672676 setConceal ( ( prev ) => ! prev )
@@ -676,6 +680,7 @@ export function Session() {
676680 {
677681 title : showTimestamps ( ) ? "Hide timestamps" : "Show timestamps" ,
678682 value : "session.toggle.timestamps" ,
683+ search : "toggle timestamps" ,
679684 category : "Session" ,
680685 slash : {
681686 name : "timestamps" ,
@@ -693,6 +698,8 @@ export function Session() {
693698 return "Expand thinking"
694699 } ) ( ) ,
695700 value : "session.toggle.thinking" ,
701+ search : "toggle thinking" ,
702+ keybind : "display_thinking" ,
696703 category : "Session" ,
697704 slash : {
698705 name : "thinking" ,
@@ -706,15 +713,19 @@ export function Session() {
706713 {
707714 title : showDetails ( ) ? "Hide tool details" : "Show tool details" ,
708715 value : "session.toggle.actions" ,
716+ search : "toggle tool details" ,
717+ keybind : "tool_details" ,
709718 category : "Session" ,
710719 run : ( ) => {
711720 setShowDetails ( ( prev ) => ! prev )
712721 dialog . clear ( )
713722 } ,
714723 } ,
715724 {
716- title : "Toggle session scrollbar",
725+ title : showScrollbar ( ) ? "Hide session scrollbar" : "Show session scrollbar",
717726 value : "session.toggle.scrollbar" ,
727+ search : "toggle session scrollbar" ,
728+ keybind : "scrollbar_toggle" ,
718729 category : "Session" ,
719730 run : ( ) => {
720731 setShowScrollbar ( ( prev ) => ! prev )
0 commit comments