You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Printed console output with the process columns and rows.
Actual
Nothing happens.
Additionally
If you run the same process.stdout.on('resize', () => { console.log(${process.stdout.columns}x${process.stdout.rows}) }) in node (I'm using v20), then you'll see the expected results.
Also, I've tested in Warp and Terminal TTY apps as well and got the same bug.
The text was updated successfully, but these errors were encountered:
samholmes
changed the title
Resize event on stdout not invoked in Alacritty on macOS
Resize event on stdout not invoked in TTY on macOS
Nov 1, 2024
Version: Deno 2.0.4
macOS: 14.2.1
Repro steps
deno
in Alacrittyprocess.stdout.on('resize', () => { console.log(
${process.stdout.columns}x${process.stdout.rows}) })
Expected
Printed console output with the process columns and rows.
Actual
Nothing happens.
Additionally
If you run the same
process.stdout.on('resize', () => { console.log(
${process.stdout.columns}x${process.stdout.rows}) })
innode
(I'm using v20), then you'll see the expected results.Also, I've tested in Warp and Terminal TTY apps as well and got the same bug.
The text was updated successfully, but these errors were encountered: