File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
src/vs/workbench/contrib/terminal/browser Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -347,6 +347,12 @@ export function registerTerminalActions() {
347
347
registerTerminalAction ( {
348
348
id : TerminalCommandId . NewInNewWindow ,
349
349
title : terminalStrings . newInNewWindow ,
350
+ precondition : ContextKeyExpr . or ( TerminalContextKeys . processSupported , TerminalContextKeys . webExtensionContributedProfile ) ,
351
+ keybinding : {
352
+ primary : KeyMod . CtrlCmd | KeyMod . Shift | KeyMod . Alt | KeyCode . Backquote ,
353
+ mac : { primary : KeyMod . WinCtrl | KeyMod . Shift | KeyMod . Alt | KeyCode . Backquote } ,
354
+ weight : KeybindingWeight . WorkbenchContrib
355
+ } ,
350
356
run : async ( c ) => {
351
357
const instance = await c . service . createTerminal ( {
352
358
location : { viewColumn : AUX_WINDOW_GROUP }
You can’t perform that action at this time.
0 commit comments