termbox2 icon indicating copy to clipboard operation
termbox2 copied to clipboard

suckless terminal rendering library

Results 10 termbox2 issues
Sort by recently updated
recently updated
newest added

Hey, In both the original `termbox` and `termbox2`, it seems to me that the named colors `TB_BLACK`, `TB_RED`, etc. _and_ `TB_DEFAULT` are only meant to be used in `TB_OUTPUT_NORMAL` mode....

Can you please start making releases? To be more specific, tagging versions in git and setting SONAME. This would greatly help packaging in Linux distributions.

This PR installs everything as `termbox.{h,so,a}` with soname version starting at 2. Any opinions on installing as `termbox2.{h,so,a}` instead to avoid conflict with termbox classic? (Tagging @jirutka.)

I have been working on a little program that I thought could be a good demo. It is an implementation of Conway's game of life, using termbox2 and nothing else....

Added default cases to switch statements which did not have them, the default case in each ends with returning TB_FAIL. Checked and cast narrowing conversions where safe to do so,...

See https://github.com/termbox/termbox2/pull/58 for the first attempt.

Useful or bloat? There's currently no way to fetch cells from the front buffer. This does close that gap. Otherwise this is a safer version of `tb_cell_buffer` which returns a...

It would be nice to have function `tb_get_cell(x, y)` of some kind that returns content on specific cell. It is complement to function tb_set_cell(...) For example I want to render...

enhancement

This has come up once or twice as there aren't many good libraries for writing cross-platform terminal applications. To my surprise, recent versions of Windows Console support xterm-like caps if...

When I press `HOME` I get for `ch` `'H'` (72) and when I press CTRL+HOME I get `key` 65521 (KEY_HOME). The same issue with `END`. Side note: BACKSPACE gives `KEY_BACKSPACE2`...