From 540ebd6f7fa5a7b842947f9024270a8a976c15e8 Mon Sep 17 00:00:00 2001 From: Hai Cao Date: Thu, 27 Oct 2022 09:45:37 -0700 Subject: [PATCH] remove "New File..." from File menu (#20999) * remove New File... from File menu * doc --- .../welcomeViews/common/newFile.contribution.ts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/vs/workbench/contrib/welcomeViews/common/newFile.contribution.ts b/src/vs/workbench/contrib/welcomeViews/common/newFile.contribution.ts index b42bfffe37..63c9309835 100644 --- a/src/vs/workbench/contrib/welcomeViews/common/newFile.contribution.ts +++ b/src/vs/workbench/contrib/welcomeViews/common/newFile.contribution.ts @@ -32,11 +32,12 @@ registerAction2(class extends Action2 { primary: KeyMod.Alt + KeyMod.CtrlCmd + KeyMod.WinCtrl + KeyCode.KeyN, weight: KeybindingWeight.WorkbenchContrib, }, - menu: { - id: MenuId.MenubarFileMenu, - group: '1_new', - order: 2 - } + // {{SQL CARBON EDIT}} - ADS has its own New File menu + // menu: { + // id: MenuId.MenubarFileMenu, + // group: '1_new', + // order: 2 + // } }); }