8000
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 a910c60 commit dc6bb3cCopy full SHA for dc6bb3c
src/vs/platform/terminal/common/capabilities/commandDetectionCapability.ts
@@ -149,6 +149,9 @@ export class CommandDetectionCapability extends Disposable implements ICommandDe
149
150
@debounce(500)
151
private _handleCursorMove() {
152
+ if (this._store.isDisposed) {
153
+ return;
154
+ }
155
// Early versions of conpty do not have real support for an alt buffer, in addition certain
156
// commands such as tsc watch will write to the top of the normal buffer. The following
157
// checks when the cursor has moved while the normal buffer is empty and if it is above the
0 commit comments