@@ -658,6 +658,8 @@ export function Session() {
658658 {
659659 title : sidebarVisible ( ) ? "Hide sidebar" : "Show sidebar" ,
660660 value : "session.sidebar.toggle" ,
661+ search : "toggle sidebar" ,
662+ keybind : "sidebar_toggle" ,
661663 category : "Session" ,
662664 run : ( ) => {
663665 batch ( ( ) => {
@@ -671,6 +673,8 @@ export function Session() {
671673 {
672674 title : conceal ( ) ? "Disable code concealment" : "Enable code concealment" ,
673675 value : "session.toggle.conceal" ,
676+ search : "toggle code concealment" ,
677+ keybind : "messages_toggle_conceal" as any ,
674678 category : "Session" ,
675679 run : ( ) => {
676680 setConceal ( ( prev ) => ! prev )
@@ -680,6 +684,7 @@ export function Session() {
680684 {
681685 title : showTimestamps ( ) ? "Hide timestamps" : "Show timestamps" ,
682686 value : "session.toggle.timestamps" ,
687+ search : "toggle timestamps" ,
683688 category : "Session" ,
684689 slash : {
685690 name : "timestamps" ,
@@ -697,6 +702,8 @@ export function Session() {
697702 return "Expand thinking"
698703 } ) ( ) ,
699704 value : "session.toggle.thinking" ,
705+ search : "toggle thinking" ,
706+ keybind : "display_thinking" ,
700707 category : "Session" ,
701708 slash : {
702709 name : "thinking" ,
@@ -710,15 +717,19 @@ export function Session() {
710717 {
711718 title : showDetails ( ) ? "Hide tool details" : "Show tool details" ,
712719 value : "session.toggle.actions" ,
720+ search : "toggle tool details" ,
721+ keybind : "tool_details" ,
713722 category : "Session" ,
714723 run : ( ) => {
715724 setShowDetails ( ( prev ) => ! prev )
716725 dialog . clear ( )
717726 } ,
718727 } ,
719728 {
720- title : "Toggle session scrollbar",
729+ title : showScrollbar ( ) ? "Hide session scrollbar" : "Show session scrollbar",
721730 value : "session.toggle.scrollbar" ,
731+ search : "toggle session scrollbar" ,
732+ keybind : "scrollbar_toggle" ,
722733 category : "Session" ,
723734 run : ( ) => {
724735 setShowScrollbar ( ( prev ) => ! prev )
0 commit comments