File tree Expand file tree Collapse file tree
packages/core/src/core/diff-viewer/internal Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ export class DiffViewerContribution implements ClientAppContribution, MenuContri
7575 public readonly onDidTabChange : Event < ITabChangedEvent > = this . _onDidTabChange . event ;
7676
7777 private sequencer = new Sequencer ( ) ;
78+ private fileSequencer = new Sequencer ( ) ;
7879
7980 getFullPath ( filePath : string ) {
8081 return path . join ( this . appConfig . workspaceDir , filePath ) ;
@@ -107,7 +108,7 @@ export class DiffViewerContribution implements ClientAppContribution, MenuContri
107108 }
108109
109110 openFileInTab = async ( filePath : string , content : string , options ?: IResourceOpenOptions ) => {
110- return this . sequencer . queue ( ( ) => this . _openFileInTab ( filePath , content , options ) ) ;
111+ return this . fileSequencer . queue ( ( ) => this . _openFileInTab ( filePath , content , options ) ) ;
111112 } ;
112113
113114 private _openDiffInTab = async (
You can’t perform that action at this time.
0 commit comments