From c56dd2cdbdd658d10917602b428fcaa29c17a5ec Mon Sep 17 00:00:00 2001 From: hungrybear88 Date: Wed, 24 Oct 2018 10:04:02 +1300 Subject: [PATCH] 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 --- src/sql/parts/query/common/query.contribution.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/sql/parts/query/common/query.contribution.ts b/src/sql/parts/query/common/query.contribution.ts index 5e4674e202..cd8fd2066c 100644 --- a/src/sql/parts/query/common/query.contribution.ts +++ b/src/sql/parts/query/common/query.contribution.ts @@ -120,7 +120,8 @@ actionRegistry.registerWorkbenchAction( new SyncActionDescriptor( RunCurrentQueryWithActualPlanKeyboardAction, RunCurrentQueryWithActualPlanKeyboardAction.ID, - RunCurrentQueryWithActualPlanKeyboardAction.LABEL + RunCurrentQueryWithActualPlanKeyboardAction.LABEL, + { primary: KeyMod.CtrlCmd | KeyCode.KEY_M } ), RunCurrentQueryWithActualPlanKeyboardAction.LABEL );