@@ -133,7 +133,7 @@ class HelpEntry:
133133
134134 key : str # Display key (e.g., "enter", "s")
135135 description : str # Help description (e.g., "Select TOP 100")
136- category : str # Category name (e.g., "Object Explorer")
136+ category : str # Category name (e.g., "Explorer")
137137
138138
139139@dataclass
@@ -383,7 +383,7 @@ class MainScreenState(State):
383383
384384 def _setup_actions (self ) -> None :
385385 # Navigation (shown in Navigation category)
386- self .allows ("focus_explorer" , help = "Focus Object Explorer" , help_key = "e" )
386+ self .allows ("focus_explorer" , help = "Focus Explorer" , help_key = "e" )
387387 self .allows ("focus_query" , help = "Focus Query" , help_key = "q" )
388388 self .allows ("focus_results" , help = "Focus Results" , help_key = "r" )
389389 self .allows ("toggle_fullscreen" , help = "Toggle fullscreen" , help_key = "f" )
@@ -453,7 +453,7 @@ def is_active(self, app: SSMSTUI) -> bool:
453453class TreeFocusedState (State ):
454454 """Base state when tree has focus."""
455455
456- help_category = "Object Explorer"
456+ help_category = "Explorer"
457457
458458 def _setup_actions (self ) -> None :
459459 self .allows ("new_connection" , key = "n" , label = "New" , help = "New connection" )
@@ -467,7 +467,7 @@ def is_active(self, app: SSMSTUI) -> bool:
467467class TreeOnConnectionState (State ):
468468 """Tree focused on a connection node."""
469469
470- help_category = "Object Explorer"
470+ help_category = "Explorer"
471471
472472 def _setup_actions (self ) -> None :
473473 def can_connect (app : SSMSTUI ) -> bool :
@@ -559,7 +559,7 @@ def is_active(self, app: SSMSTUI) -> bool:
559559class TreeOnTableState (State ):
560560 """Tree focused on table or view node."""
561561
562- help_category = "Object Explorer"
562+ help_category = "Explorer"
563563
564564 def _setup_actions (self ) -> None :
565565 self .allows ("select_table" , key = "s" , label = "Select TOP 100" , help = "Select TOP 100 (table/view)" )
@@ -890,7 +890,7 @@ def generate_help_text(self) -> str:
890890 ]
891891
892892 category_order = [
893- "Object Explorer" ,
893+ "Explorer" ,
894894 "Query Editor (Normal)" ,
895895 "Query Editor (Insert)" ,
896896 "Results" ,
0 commit comments