Remove support responses

Wrong place for them
This commit is contained in:
Daniel Imms 2026-01-09 11:42:00 -08:00
parent 3adf6be988
commit 4a67836a5b
No known key found for this signature in database
GPG Key ID: 5F0FF45B19E3A5D2
3 changed files with 0 additions and 8 deletions

View File

@ -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 {

View File

@ -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;

View File

@ -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`);
}
/**