Skip to content

Commit 33c2d45

Browse files
committed
Fix incorrect options to node-pty
1 parent ed50c64 commit 33c2d45

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

packages/vscode/src/fill/node-pty.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,6 @@ class Pty implements nodePty.IPty {
5353
setTimeout(() => ptyProc.kill("SIGKILL"), 5000); // Double tap.
5454
},
5555
};
56-
}, file, Array.isArray(args) ? args : [args], {
57-
...options,
58-
tty: {
59-
columns: options.cols || 100,
60-
rows: options.rows || 100,
61-
},
6256
}, file, args, options);
6357

6458
this.ae.on("pid", (pid) => this._pid = pid);

0 commit comments

Comments
 (0)