Merge PR #382: word wrapping in Editor component

This commit is contained in:
Mario Zechner
2026-01-03 00:48:28 +01:00
150 changed files with 10122 additions and 4285 deletions

View File

@@ -86,6 +86,11 @@ export class VirtualTerminal implements Terminal {
this.xterm.write("\x1b[2J\x1b[H"); // Clear screen and move to home (1,1)
}
setTitle(title: string): void {
// OSC 0;title BEL - set terminal window title
this.xterm.write(`\x1b]0;${title}\x07`);
}
// Test-specific methods not in Terminal interface
/**