When switching to the Terminal tab, there's a brief flash (~50ms) of incorrectly sized text before xterm.js re-fits to the container.
Cause: the terminal div transitions from display: none to display: flex, and fitAddon.fit() runs after a 50ms delay.
Possible fix: fit before making visible, or use visibility: hidden instead of display: none (keeps layout but hides visually).
🤖 On behalf of @grimmerk — generated with Claude Code
screenshot
or

then

When switching to the Terminal tab, there's a brief flash (~50ms) of incorrectly sized text before xterm.js re-fits to the container.
Cause: the terminal div transitions from
display: nonetodisplay: flex, andfitAddon.fit()runs after a 50ms delay.Possible fix: fit before making visible, or use
visibility: hiddeninstead ofdisplay: none(keeps layout but hides visually).🤖 On behalf of @grimmerk — generated with Claude Code
screenshot
or

then