@@ -681,6 +681,8 @@ export function Session() {
681681 {
682682 title : sidebarVisible ( ) ? "Hide sidebar" : "Show sidebar" ,
683683 value : "session.sidebar.toggle" ,
684+ search : "toggle sidebar" ,
685+ keybind : "sidebar_toggle" ,
684686 category : "Session" ,
685687 run : ( ) => {
686688 batch ( ( ) => {
@@ -694,6 +696,8 @@ export function Session() {
694696 {
695697 title : conceal ( ) ? "Disable code concealment" : "Enable code concealment" ,
696698 value : "session.toggle.conceal" ,
699+ search : "toggle code concealment" ,
700+ keybind : "messages_toggle_conceal" as any ,
697701 category : "Session" ,
698702 run : ( ) => {
699703 setConceal ( ( prev ) => ! prev )
@@ -703,6 +707,7 @@ export function Session() {
703707 {
704708 title : showTimestamps ( ) ? "Hide timestamps" : "Show timestamps" ,
705709 value : "session.toggle.timestamps" ,
710+ search : "toggle timestamps" ,
706711 category : "Session" ,
707712 slash : {
708713 name : "timestamps" ,
@@ -720,6 +725,8 @@ export function Session() {
720725 return "Expand thinking"
721726 } ) ( ) ,
722727 value : "session.toggle.thinking" ,
728+ search : "toggle thinking" ,
729+ keybind : "display_thinking" ,
723730 category : "Session" ,
724731 slash : {
725732 name : "thinking" ,
@@ -733,15 +740,19 @@ export function Session() {
733740 {
734741 title : showDetails ( ) ? "Hide tool details" : "Show tool details" ,
735742 value : "session.toggle.actions" ,
743+ search : "toggle tool details" ,
744+ keybind : "tool_details" ,
736745 category : "Session" ,
737746 run : ( ) => {
738747 setShowDetails ( ( prev ) => ! prev )
739748 dialog . clear ( )
740749 } ,
741750 } ,
742751 {
743- title : "Toggle session scrollbar",
752+ title : showScrollbar ( ) ? "Hide session scrollbar" : "Show session scrollbar",
744753 value : "session.toggle.scrollbar" ,
754+ search : "toggle session scrollbar" ,
755+ keybind : "scrollbar_toggle" ,
745756 category : "Session" ,
746757 run : ( ) => {
747758 setShowScrollbar ( ( prev ) => ! prev )
0 commit comments