mirror of
https://github.com/xtermjs/xterm.js.git
synced 2026-02-01 16:48:16 +00:00
Remove support responses
Wrong place for them
This commit is contained in:
parent
3adf6be988
commit
4a67836a5b
@ -610,9 +610,6 @@ export class CoreBrowserTerminal extends CoreTerminal implements ITerminal {
|
||||
// Listen for mouse events and translate
|
||||
// them into terminal mouse protocols.
|
||||
this.bindMouse();
|
||||
|
||||
// Emit kitty keyboard protocol support notification (31 = all flags supported)
|
||||
this.coreService.triggerDataEvent(`${C0.ESC}[>31u`);
|
||||
}
|
||||
|
||||
private _createRenderer(): IRenderer {
|
||||
|
||||
@ -2012,8 +2012,6 @@ export class InputHandler extends Disposable implements IInputHandler {
|
||||
this._coreService.isCursorInitialized = true;
|
||||
this._onRequestRefreshRows.fire(undefined);
|
||||
this._onRequestSyncScrollBar.fire();
|
||||
// Emit kitty keyboard protocol support notification
|
||||
this._coreService.triggerDataEvent(`${C0.ESC}[>31u`);
|
||||
break;
|
||||
case 2004: // bracketed paste mode (https://cirw.in/blog/bracketed-paste)
|
||||
this._coreService.decPrivateModes.bracketedPasteMode = true;
|
||||
|
||||
@ -55,9 +55,6 @@ export class Terminal extends CoreTerminal {
|
||||
this._register(Event.forward(this._inputHandler.onA11yChar, this._onA11yCharEmitter));
|
||||
this._register(Event.forward(this._inputHandler.onA11yTab, this._onA11yTabEmitter));
|
||||
this._register(Event.forward(Event.map(this._inputHandler.onRequestRefreshRows, e => ({ start: e?.start ?? 0, end: e?.end ?? this.rows - 1 })), this._onRender));
|
||||
|
||||
// Emit kitty keyboard protocol support notification (31 = all flags supported)
|
||||
this.coreService.triggerDataEvent(`${C0.ESC}[>31u`);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user