Josiah Outram Halstead

Results 78 comments of Josiah Outram Halstead

Currently I run all the terminal queries before any output is generated, so should be OK on the first point. The line wrapping I hadn't thought of, but will ensure...

Thanks for reporting @jerch Yes you are exactly correct - the current scrollbar implementation only recognizes drag events when the mouse is over the scrollbar itself. There's no built-in support...

1. The low scrolling resolution when dragging the scroll-bar is because the mouse position is only reported to the nearest terminal character cell. Especially for long notebooks, this will result...

I found out about it here: https://invisible-island.net/xterm/ctlseqs/ctlseqs.html#h3-Extended-coordinates WezTerm, Kitty, Foot & Contour also appear to support it Would be really cool to have it in xterm.js :smiley: The only problem...

Quick update - I've got both global mouse dragging and pixel-resolution scrolling working. I just need to tidy some things up a bit before pushing. But here's a sneaky preview:...

I've released `v2.0.8`, which includes fixes for both parts of this issue (you will need to use a terminal which supports SGR-pixel reporting, like wezterm, kitty, xterm, etc.). @jerch This...

Hi again! Partial image rendering is something I'm planning to implement. I think cropping the images in sixel-land is a good idea. I had originally planned to just crop the...

I've started working on implementing sixel cropping in python. I've still got some bugs relating to cropping in the x-direction to iron out, but it the concept works! ![image](https://user-images.githubusercontent.com/12154190/194668610-6b2418da-0159-4665-abfa-9d3c951d951b.png)

Here's my sixel cropping Python library: https://github.com/joouha/sixelcrop I'm planning to implement this in euporie soon

Yes, absolutely The ScrollablePane from PT works by rendering all child elements to a virtual screen, then copying only the visible interest to the display. This is not good for...