about summary refs log tree commit diff stats
path: root/src/lcurses/curses.c
Commit message (Collapse)AuthorAgeFilesLines
* delete curses primitives to read whole linesKartik K. Agaram2022-02-211-25/+5
| | | | | | | | They make it seem like you can use them to create simple REPL apps, but you can't, because standard Teliva shortcuts won't work. I _could_ make them work by emulating them using getch(), but that feels like an unnecessary abstraction for now.
* delete some dead codeKartik K. Agaram2022-01-241-48/+0
| | | | | I'm kinda sorta able to get lcurses running on NetBSD 9.2 without this particular hack.
* more configurable colorsKartik K. Agaram2021-12-061-0/+17
| | | | | Also start using 256 colors, under the assumption most people will have them.
* fix build on MacKartik K. Agaram2021-11-271-0/+3
|
* get rid of a distracting nameKartik K. Agaram2021-11-201-1/+1
| | | | | No distinction now between the C and Lua versions of the curses library. We build them all together in one place.
* port changes from minimal to maximal versionKartik K. Agaram2021-11-201-37/+9
| | | | From lcurseslib.c to lcurses/ directory.
* inline lcurses maximally rather than minimallyKartik K. Agaram2021-11-191-0/+1555
Until now we had just the bare minimum bindings needed for the demos built so far. Now we have all of lcurses building in place with minimal changes. The changes in this commit can run hanoi.lua when inlined into Lua 5.1, but don't work with Teliva.