mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-24 17:31:37 +01:00
Merge pull request #222185 from microsoft/tyriar/222184
Ignore sequence data events in terminal suggest
This commit is contained in:
@@ -160,8 +160,10 @@ export class SuggestAddon extends Disposable implements ITerminalAddon, ISuggest
|
||||
return this._handleVSCodeSequence(data);
|
||||
}));
|
||||
this._register(xterm.onData(e => {
|
||||
this._lastUserData = e;
|
||||
this._lastUserDataTimestamp = Date.now();
|
||||
if (!e.startsWith('\x1b[')) {
|
||||
this._lastUserData = e;
|
||||
this._lastUserDataTimestamp = Date.now();
|
||||
}
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user