remove "New File..." from File menu (#20999)

* remove New File... from File menu

* doc
This commit is contained in:
Hai Cao
2022-10-27 09:45:37 -07:00
committed by GitHub
parent 8534b12ee5
commit 540ebd6f7f

View File

@@ -32,11 +32,12 @@ registerAction2(class extends Action2 {
primary: KeyMod.Alt + KeyMod.CtrlCmd + KeyMod.WinCtrl + KeyCode.KeyN, primary: KeyMod.Alt + KeyMod.CtrlCmd + KeyMod.WinCtrl + KeyCode.KeyN,
weight: KeybindingWeight.WorkbenchContrib, weight: KeybindingWeight.WorkbenchContrib,
}, },
menu: { // {{SQL CARBON EDIT}} - ADS has its own New File menu
id: MenuId.MenubarFileMenu, // menu: {
group: '1_new', // id: MenuId.MenubarFileMenu,
order: 2 // group: '1_new',
} // order: 2
// }
}); });
} }