clearAllMarkers

This commit is contained in:
Simon Lamon
2022-07-31 07:38:14 +00:00
parent 848aceaa25
commit 0a83040ac8
2 changed files with 14 additions and 0 deletions
+13
View File
@@ -71,4 +71,17 @@ describe('BufferSet', () => {
assert.equal(bufferSet.active.y, 10);
});
});
describe('markers', () => {
beforeEach(() => {
});
it('should clear the markers when the buffer is switched', () => {
bufferSet.activateAltBuffer();
bufferSet.alt.addMarker(1);
assert.equal(bufferSet.alt.markers.length, 1);
bufferSet.activateNormalBuffer();
assert.equal(bufferSet.alt.markers.length, 0);
});
});
});
+1
View File
@@ -83,6 +83,7 @@ export class BufferSet extends Disposable implements IBufferSet {
// The alt buffer should always be cleared when we switch to the normal
// buffer. This frees up memory since the alt buffer should always be new
// when activated.
this._alt.clearAllMarkers();
this._alt.clear();
this._activeBuffer = this._normal;
this._onBufferActivate.fire({