File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -257,7 +257,9 @@ export type CoreCommands =
257257 | 'workbench.action.closeActiveEditor'
258258 | 'workbench.action.closeAllEditors'
259259 | 'workbench.action.closePanel'
260+ | 'workbench.action.focusRightGroup'
260261 | 'workbench.action.nextEditor'
262+ | 'workbench.action.newGroupRight'
261263 | 'workbench.action.openWalkthrough'
262264 | 'workbench.action.toggleMaximizedPanel'
263265 | 'workbench.extensions.action.switchToRelease'
Original file line number Diff line number Diff line change @@ -338,9 +338,9 @@ export async function openChangesEditor(
338338 }
339339
340340 if ( window . tabGroups . all . some ( g => g . viewColumn === column ) ) {
341- await executeCoreCommand ( 'workbench.action.focusRightGroup' as any ) ;
341+ await executeCoreCommand ( 'workbench.action.focusRightGroup' ) ;
342342 } else {
343- await executeCoreCommand ( 'workbench.action.newGroupRight' as any ) ;
343+ await executeCoreCommand ( 'workbench.action.newGroupRight' ) ;
344344 }
345345 }
346346 await executeCoreCommand (
You can’t perform that action at this time.
0 commit comments