pyte icon indicating copy to clipboard operation
pyte copied to clipboard

Simple VTXXX-compatible linux terminal emulator

Results 59 pyte issues
Sort by recently updated
recently updated
newest added

First type some short command, then type a long command, then use up and down or page up and page down key, server will send back stream characters with many...

When you use any key in w3m running through pyte I see the following crash: ``` Exception in thread Thread-204: News GmaSearch Images Maps Play YouTube News Gma Traceback (most...

If you try to run webterm.py, it will fail, giving the errors: `webterm.py:86: RuntimeWarning: coroutine 'WebSocketResponse.send_str' was never awaited ws.send_str(terminal.dumps()) ` `webterm.py:90: RuntimeWarning: coroutine 'WebSocketResponse.send_str' was never awaited ws.send_str(terminal.dumps()) `...

I just recently installed Pythonista 3 on my iPad and installed Stash. When trying to ssh into a remote server, I receive the following error: ``` Exception in thread Thread-98:...

I'm subclassing HistoryScreen to have history added when the terminal gets smaller - is this something that might belong in pyte?

help-wanted

I want to feed some Big5-UAO encoded data. Since there is no `encoding` parameter (or something like that), I tried using `ByteStream`: ```py stream = ByteStream(screen) stream.select_other_charset("@") stream.feed(bytes_object) ``` However,...

Been using pyte for a while now and it works really great for everyday terminal use. I have run into some trouble when trying to get 256 color support working...

Right now, the handlers for OSC sequences are [hardcoded][1] and it doesn't support other codes other than 01 and 02. Is there any chance to allow user to specific a...

This is an incomplete list of apps which are known to be rendered incorrectly with `TERM=linux`. Every quirk in the list potentially indicates a bug in one of the `Screen`...

help-wanted
bug

Any real-world terminal implementation needs history and incremental updates, so I think it makes sense to merge ``pyte.DiffScreen`` and ``pyte.HistoryScreen`` into ``pyte.Screen``.

help-wanted