console clear shortcut

This commit is contained in:
Reimar 2025-10-13 11:26:15 +02:00
parent f42da20957
commit 4f1d0aada4

View File

@ -22,6 +22,12 @@ export class ConsoleInput {
this.moveHistory(1);
ev.preventDefault();
break;
case "l":
if (ev.ctrlKey) {
this.console.clear();
ev.preventDefault();
}
break;
}
}