We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2449d64 commit 6346d96Copy full SHA for 6346d96
src/packages/frontend/frame-editors/terminal-editor/connected-terminal.ts
@@ -746,13 +746,11 @@ export class Terminal<T extends CodeEditorState = CodeEditorState> {
746
init_terminal_data(): void {
747
this.terminal.onKey(({ key }) => {
748
if (this.ignoreData) {
749
- console.log("onKey", { key });
750
this.conn_write(key);
751
}
752
});
753
this.terminal.onData((data) => {
754
if (!this.ignoreData) {
755
- console.log("onData", { data });
756
this.conn_write(data);
757
758
0 commit comments