mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-19 22:42:35 +01:00
dispose inputs in history when removing
This commit is contained in:
@@ -269,7 +269,7 @@ export class HistoryService extends BaseHistoryService implements IHistoryServic
|
||||
|
||||
// Bounding
|
||||
if (this.recentlyClosed.length > HistoryService.MAX_RECENTLY_CLOSED_EDITORS) {
|
||||
this.recentlyClosed = this.recentlyClosed.slice(this.recentlyClosed.length - HistoryService.MAX_RECENTLY_CLOSED_EDITORS); // upper bound of recently closed
|
||||
this.recentlyClosed.shift().dispose(); // remove first and dispose
|
||||
}
|
||||
|
||||
// Restore on dispose
|
||||
@@ -363,7 +363,7 @@ export class HistoryService extends BaseHistoryService implements IHistoryServic
|
||||
|
||||
// Respect max entries setting
|
||||
if (this.history.length > HistoryService.MAX_HISTORY_ITEMS) {
|
||||
this.history = this.history.slice(0, HistoryService.MAX_HISTORY_ITEMS);
|
||||
this.history.pop().dispose(); // remove and dispose last
|
||||
}
|
||||
|
||||
// Restore on dispose
|
||||
@@ -495,7 +495,7 @@ export class HistoryService extends BaseHistoryService implements IHistoryServic
|
||||
|
||||
// Check for limit
|
||||
if (this.stack.length > HistoryService.MAX_STACK_ITEMS) {
|
||||
this.stack.shift(); // remove first
|
||||
this.stack.shift().input.dispose(); // remove first and dispose
|
||||
if (this.index > 0) {
|
||||
this.index--;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user