jerch
jerch
The size calculation is off in several ways (see https://github.com/jerch/xterm-addon-image/issues/37 for details). Basically we should not strip empty sixel bands at all, but account them in size calculation. This kinda...
Softhyphens have no screen repr in xterm.js. Repro: ```bash node -e "console.log('### Soft\xadhy\xadphen is awk\xadward in ter\xadmi\xadnals. ###')" ```  VTE/gnome-terminal has the same issue:  Others like konsole and...
The following rough idea might seem pretty wild at a first glance, but could turn a TE into a swiss army knife for remote administration tasks of stripped-down target machines...
Coming from #4605 (also see comments there): The DOM renderer would benefit from displaying the row content spans with `inline` instead of `inline-block`: - ~20% render speedup - fixes over-...
WIP - For now this issue is meant as an aggregator for several issues and possible solutions we have around unicode in TEs. In the long run we might have...
Coming from #4581. We should try to establish the same mouse tracking behavior as seen on other TEs: - UP & DRAG should be triggered from outside of the terminal...
Safari finally added offscreen canvas support in v16.4 (released around April 23), at least with bitmaprenderer and 2D context support. It might be worth to check, if we can free...
Thanks to @willmcgugan I have some heavy load examples to test on the DOM renderer, in particular: - the colortest file for [here](https://github.com/xtermjs/xterm.js/issues/4484#issue-1674974841) - `textual easing` to spot render glitches...
Coming from https://github.com/xtermjs/xterm.js/pull/4605 (also see comments there): The width cache can grow big, so it would be good to share it between multiple terminal instances. Prolly depends on #4634.
Coming from https://github.com/xtermjs/xterm.js/pull/4605 (also see comments there): Both do character measuring - this should get merged into one source of truth with proper event listener & emitter (should act on...