JetBrains / jediterm

Pure Java Terminal Emulator. Works with SSH and PTY.
GNU Lesser General Public License v3.0
675 stars 171 forks source link

Wrong columns count #291

Open nponeccop opened 2 months ago

nponeccop commented 2 months ago

Here is a test:

tput cols; printf 'X%.0s' $(seq 1 $(tput cols)); echo

Expected Behavior

Prints XXXXXXX line from edge to edge of the terminal

Actual Behavior

Prints XXXXXX X

So it's one-off, probably due to the presence of a vertical scrollbar. I only tested it in WebStorm running inside of a DevContainer so I'm not sure if it's the terminal bug or the WebStorm bug.