jerch
jerch
Here you state to reserve color slot 0 for transparent (aka background color): https://github.com/mattn/go-sixel/blob/8aa94a3344af2b2fb49ae02a81ceff5b76d1625a/sixel.go#L38 Following the SIXEL spec in DEC STD 070 this is actually not needed, there is no...
Took me some time to find out, why this doesnt work in the console: ```js t = term.options.theme t.background = '#000000' term.options.theme = t // no change at all t2...
From the manuals: > If LNM is set, then the cursor moves to the first column on the next line when the terminal receives an LF, FF, or VT character....
If the browser has a zoomlevel (prolly for any pixelDeviceRatio != 1) the element resizing in `client.ts` does not yield the same values as `FitAddon.fit` leading to additional resize adjustments...
Idea to relief some stress from terminal reflow events - create a `Terminal.resizeLazy(rows, cols, timeout?)` variant, and likewise a `FitAddon.fitLazy` variant, which debounces resizing within a certain timeout. This would...
Should fix #4112. Still WIP... TODO: - [x] alloc/copy-free shrinking - [x] alloc/copy-free enlarging within bytelength - [ ] postpone memory resize if buffer > 2x view size - [...
XTGETTCAP is a nice way to provide terminfo data to application side without the need to query libterminfo by the app. The latter often is unreliable due to outdated or...
The DECRQSS status report is wrong for SGR - it always returns `0m` instead of real current values.
While playing with your euporie browser example I saw that you do a low quality prerendering of graphics while they are not fully in viewport, and once they are fully...
See `SixelHandler.reset` in xterm-addon-image.