Release v0.7.26

This commit is contained in:
Mario Zechner 2025-11-20 17:29:24 +01:00
parent 4afb3231e4
commit 11aa39c5e4
13 changed files with 72 additions and 31 deletions

View file

@ -8,8 +8,15 @@ export class CustomEditor extends Editor {
public onCtrlC?: () => void;
public onShiftTab?: () => void;
public onCtrlP?: () => void;
public onCtrlO?: () => void;
handleInput(data: string): void {
// Intercept Ctrl+O for tool output expansion
if (data === "\x0f" && this.onCtrlO) {
this.onCtrlO();
return;
}
// Intercept Ctrl+P for model cycling
if (data === "\x10" && this.onCtrlP) {
this.onCtrlP();