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 5f31504 commit bfd4246Copy full SHA for bfd4246
src/vs/platform/terminal/common/capabilities/commandDetection/promptInputModel.ts
@@ -68,8 +68,8 @@ export class PromptInputModel extends Disposable implements IPromptInputModel {
68
69
this._register(this._xterm.onData(e => this._handleInput(e)));
70
this._register(Event.any(
71
- // TODO: Upstream me to headless
72
- (this._xterm as any).onWriteParsed,
+ // TODO: Upstream me to headless https://github.com/xtermjs/xterm.js/pull/5034
+ (this._xterm as any)._core.onWriteParsed,
73
this._xterm.onCursorMove,
74
)(() => this._sync()));
75
0 commit comments