Jeff Quast
Jeff Quast
I wonder, with #7 , if we should go ahead and interpret it for the user, give them a special "is_sequence", a new keystroke, "KEY_PASTE", and make the unicode string...
No. No progress. PR’s welcome. I’m distancing myself from FOSS work, life is too demanding for me right now, best wishes
Closing as duplicate of #58
We can absolutely add this to blessed, it is a very basic capability. This is a vt100 sequence, "set scrolling region", it is `\x1b[10;20r`, where `10` is starting row, `20`...
the change scrolling region attribute is already in blessed because it is a termcap capability. It is just not documented. ``` from blessed import Terminal term = Terminal() term.csr(10, 20)...
I don't bother to run tests with older python versions locally, either, I just (ab)use CI to do it on my behalf. We will certainly drop older versions when the...
It is possible — I’m sorry I can’t help write any code for some time, I’m a bit busy this holiday, but I referenced all of the code that could...
Thank you @wagnerflo, @da-h, and @haolian9 for your initiative to add asyncio support to blessed. I'm glad to see there is some interest here. I forgot to link @haliphax's `inkey()`...
``` :arg on_resize: A function that is given the terminal as the first positional argument, which is called each time terminal is resized. .. note:: A GUI operation of "drag...