mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-04 17:23:45 -05:00
Adds "Execution Plan" prefix to Execution Plan commands (#19842)
* Prefixes execution plan commands, so they are easier to find * Provides category argument to categorize commands.
This commit is contained in:
@@ -101,7 +101,7 @@ MenuRegistry.appendMenuItem(MenuId.CommandPalette, {
|
||||
value: localize('executionPlanCompareCommandValue', "Compare execution plans"),
|
||||
original: localize('executionPlanCompareCommandOriginalValue', "Compare execution plans")
|
||||
},
|
||||
category: 'Execution Plan'
|
||||
category: localize('ExecutionPlan', 'Execution Plan')
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
@@ -142,7 +142,8 @@ actionRegistry.registerWorkbenchAction(
|
||||
EstimatedExecutionPlanKeyboardAction.LABEL,
|
||||
{ primary: KeyMod.CtrlCmd | KeyCode.KEY_L }
|
||||
),
|
||||
EstimatedExecutionPlanKeyboardAction.LABEL
|
||||
EstimatedExecutionPlanKeyboardAction.LABEL,
|
||||
localize('ExecutionPlan', 'Execution Plan')
|
||||
);
|
||||
|
||||
actionRegistry.registerWorkbenchAction(
|
||||
|
||||
Reference in New Issue
Block a user