@@ -650,6 +650,8 @@ export function Session() {
650650 {
651651 title : sidebarVisible ( ) ? "Hide sidebar" : "Show sidebar" ,
652652 value : "session.sidebar.toggle" ,
653+ search : "toggle sidebar" ,
654+ keybind : "sidebar_toggle" ,
653655 category : "Session" ,
654656 run : ( ) => {
655657 batch ( ( ) => {
@@ -663,6 +665,8 @@ export function Session() {
663665 {
664666 title : conceal ( ) ? "Disable code concealment" : "Enable code concealment" ,
665667 value : "session.toggle.conceal" ,
668+ search : "toggle code concealment" ,
669+ keybind : "messages_toggle_conceal" as any ,
666670 category : "Session" ,
667671 run : ( ) => {
668672 setConceal ( ( prev ) => ! prev )
@@ -672,6 +676,7 @@ export function Session() {
672676 {
673677 title : showTimestamps ( ) ? "Hide timestamps" : "Show timestamps" ,
674678 value : "session.toggle.timestamps" ,
679+ search : "toggle timestamps" ,
675680 category : "Session" ,
676681 slash : {
677682 name : "timestamps" ,
@@ -685,6 +690,8 @@ export function Session() {
685690 {
686691 title : showThinking ( ) ? "Hide thinking" : "Show thinking" ,
687692 value : "session.toggle.thinking" ,
693+ search : "toggle thinking" ,
694+ keybind : "display_thinking" ,
688695 category : "Session" ,
689696 slash : {
690697 name : "thinking" ,
@@ -698,15 +705,19 @@ export function Session() {
698705 {
699706 title : showDetails ( ) ? "Hide tool details" : "Show tool details" ,
700707 value : "session.toggle.actions" ,
708+ search : "toggle tool details" ,
709+ keybind : "tool_details" ,
701710 category : "Session" ,
702711 run : ( ) => {
703712 setShowDetails ( ( prev ) => ! prev )
704713 dialog . clear ( )
705714 } ,
706715 } ,
707716 {
708- title : "Toggle session scrollbar",
717+ title : showScrollbar ( ) ? "Hide session scrollbar" : "Show session scrollbar",
709718 value : "session.toggle.scrollbar" ,
719+ search : "toggle session scrollbar" ,
720+ keybind : "scrollbar_toggle" ,
710721 category : "Session" ,
711722 run : ( ) => {
712723 setShowScrollbar ( ( prev ) => ! prev )
0 commit comments