James Holderness

Results 614 comments of James Holderness

It could be. It sound similar to the issue linked from there (#1375), although kind of backwards (in that case it looks like the glyphs get narrower after the cursor...

@gwpl This repository isn't maintained any more, and that drawing app is just a demonstration, so it's highly unlikely anyone is going to want to update it to use a...

@gwpl Sorry, I didn't follow all your links, and I mistakenly assumed that `ttyd` was just another terminal. If you specifically need that for web sharing, and xterm.js isn't interested...

In case this is relevant to your API design, it's worth noting that [Tabby](https://github.com/Eugeny/tabby) has its own `OSC 52` implementation (see [here](https://github.com/Eugeny/tabby/blob/93e43067de6aa48d71e1fbb0cbb4168a6949a926/tabby-terminal/src/middleware/oscProcessing.ts#L48-L52)), so I'm guessing they might also need a...

FYI, I did post a little two-frame sixel animation in your vt340test repo a while back: https://github.com/hackerb9/vt340test/issues/33#issuecomment-2131265837 I don't know if you ever tried it out though - probably would...

As far I understand it, Rio inherited its Sixel code from Alacritty, so at least some of these bugs are also Alacritty bugs. I'm fairly sure Alacritty used to support...

To see a simple example of the z-order issue I mentioned above, you can do something like this: ```bash clear; tput cup 10 10; img2sixel -h 200 snake.png; tput cup...

In theory it should be possible to render a Sixel image on the last line, but you need to limit the height to a multiple of 6 that will fit...

> Also, xterm for a long time (maybe still) has a hardcoded max of 1000x1000 pixels That's still the default, but it can be increased with the `maxGraphicSize` resource (at...

> I suspect that this will be a recurring issue and likely the only way to hotfix it is by adding a literal `sleep()` in the startup path of `edit`...