add key command ctl + L to run query plan (#2952)

* add key command ctl + L to run query plan

* fix to match SSMS for getting query plan
This commit is contained in:
hungrybear88
2018-10-24 10:04:02 +13:00
committed by Karl Burtram
parent 363f28a46b
commit c56dd2cdbd

View File

@@ -120,7 +120,8 @@ actionRegistry.registerWorkbenchAction(
new SyncActionDescriptor(
RunCurrentQueryWithActualPlanKeyboardAction,
RunCurrentQueryWithActualPlanKeyboardAction.ID,
RunCurrentQueryWithActualPlanKeyboardAction.LABEL
RunCurrentQueryWithActualPlanKeyboardAction.LABEL,
{ primary: KeyMod.CtrlCmd | KeyCode.KEY_M }
),
RunCurrentQueryWithActualPlanKeyboardAction.LABEL
);