mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-06 03:20:26 +00:00
2c5d938cbd
* Paint sprixels in order, bottom-to-top We don't want to have to track sprixel order whenever someone moves an ncplane, so just keep a list growing backwards as we pass top-to-bottom in notcurses_render_internal(). Each time we hit a sprixel plane, splice it out of the sprixel list, and add it to the front of our temporary list. When we hit the bottom, stick this temporary list on the end of our existing list (any such planes are to be deleted, which comes before drawing). Closes #1575. * reorder collected sprixellist; solves kitty but breaks sixel =/ #1575 * remove debugging cruft * [rust] fix up mergedown mutability |
||
---|---|---|
.. | ||
src/notcurses | ||
LICENSE.txt | ||
ncdirect-pydemo | ||
ncdirect-pydemo.1.md | ||
notcurses-pydemo | ||
notcurses-pydemo.1.md | ||
README.md | ||
setup.cfg | ||
setup.py |
notcurses
Python bindings for the C Notcurses library. Notcurses is a blingful library for building complex, vibrant textual user interfaces (TUIs) on modern terminal emulators, of which these Python bindings offer nowhere near complete coverage.
by nick black (nickblack@linux.com)
for more information, see my wiki.