File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
src/vs/workbench/contrib/terminal/browser Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -188,6 +188,26 @@ export function setupTerminalMenus(): void {
188
188
]
189
189
) ;
190
190
191
+ MenuRegistry . appendMenuItem ( MenuId . EditorTabsBarContext , {
192
+ command : {
193
+ id : TerminalCommandId . CreateTerminalEditorSameGroup ,
194
+ title : terminalStrings . new
195
+ } ,
196
+ group : '1_file' ,
197
+ order : 30 ,
198
+ when : TerminalContextKeys . processSupported
199
+ } ) ;
200
+
201
+ MenuRegistry . appendMenuItem ( MenuId . EmptyEditorGroupContext , {
202
+ command : {
203
+ id : TerminalCommandId . CreateTerminalEditorSameGroup ,
204
+ title : terminalStrings . new
205
+ } ,
206
+ group : '1_file' ,
207
+ order : 30 ,
208
+ when : TerminalContextKeys . processSupported
209
+ } ) ;
210
+
191
211
MenuRegistry . appendMenuItems (
192
212
[
193
213
{
You can’t perform that action at this time.
0 commit comments