Per Bothner
Per Bothner
See [this branch for a prototype](https://github.com/PerBothner/xterm.js/tree/buffer-cell-cursor) of this proposal. The prototype is not usable: a lot of things work; a lot don't. The BufferLine data structure contains a `_data` field,...
As we add more functionality, I think it is necessary to simplify where we can, especially when there are multiple ways to express similar functionality. Specifically, there is a lot...
This project has seem very little activity in the last few years. [My fork](https://github.com/PerBothner/golden-layout) has seem a lot of changes and enhancements, but nobody that has commit access to upstream...
I added logging to print the last 20 bytes and the next 20 bytes after the end of a Sixel sequence. ``` after handleSixel "6?A@??A!13?A!711?-\e\\" / "\e[32;1H " terminal.js:1283 after...
Stderrred doesn't work right if stderr contains escape sequences (one example is gcc). In that case only the initial part of the error message is red. This can be fixed...
I got xterm.js + xterm-add-image working under [DomTerm](https://domterm.org/xtermjs.html). However, it doesn't appear a sixel-produced image is saved by the serialize addon. Specifically, I printed some images (using lsix), and then...
**Is your feature request related to a problem? Please describe.** The custom_titlebar example does not handle window resize when dragging the window borders using touch events. (It handles windows move...
As rendered, an explicit newline at the end of a block collapses with a "required newline". Consider ``` line1
line2 ``` This is rendered (in my experience) with no blank line...
Most control characters (including CR and LF) are ignored in OSC_STRING. This is inconsistent with xterm, which I think we should follow in this respect. See the `sos_table` in `VTPrsTbl.c`...
My [`html-blocks` fork](https://github.com/PerBothner/xterm.js/tree/html-blocks)allows an application to "print" output lines containing HTML to an xterm.js terminal. This is a generalization of existing extensions to "print" images, such as using Sixel. However,...