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
A wide character takes more than one column on terminals. Examples: the tab character (8 cols), H (2 cols).
Currently in the input widget we don't handle these so if I enter wide characters the characters after that are rendered incorrectly, and glitches occur as I move the cursor.
I haven't checked, but I suspect message area should also have the same problem.
In termbox we use unicode-width to determine width of a character. However termbox does not implement wrapping so it's TUI's job to implement splitting the line at the right point in the presence of wide characters.
The text was updated successfully, but these errors were encountered:
A wide character takes more than one column on terminals. Examples: the tab character (8 cols),
H
(2 cols).Currently in the input widget we don't handle these so if I enter wide characters the characters after that are rendered incorrectly, and glitches occur as I move the cursor.
I haven't checked, but I suspect message area should also have the same problem.
In termbox we use unicode-width to determine width of a character. However termbox does not implement wrapping so it's TUI's job to implement splitting the line at the right point in the presence of wide characters.
The text was updated successfully, but these errors were encountered: