We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 816f62c commit 5b44deaCopy full SHA for 5b44dea
src/common/buffer/Buffer.ts
@@ -591,10 +591,12 @@ export class Buffer implements IBuffer {
591
for (const marker of this.markers.filter(m => m.line === y)) {
592
marker.dispose();
593
}
594
+ this.markers = this.markers.filter(m => m.line !== y);
595
} else {
596
for (const marker of this.markers) {
597
598
599
+ this.markers = [];
600
601
this._isClearing = false;
602
0 commit comments