about summary refs log tree commit diff stats
path: root/prototypes/browse/22
Commit message (Collapse)AuthorAgeFilesLines
* 6794 - cleaner interface for keyboardKartik Agaram2020-09-161-1/+1
| | | | | | | So far I've been assuming that read-key only works for ascii, and that I'd need to get more sophisticated both for multi-byte utf-8 and multi-byte terminal escape codes like arrow keys. Rather to my surprise, both work fine. We just need to adjust the types to reflect this fact.
* 6720Kartik Agaram2020-08-221-3/+3
|
* 6703 - new types: code-point and graphemeKartik Agaram2020-08-022-2/+4
| | | | | | | | | | Both have the same size: 4 bytes. So far I've just renamed print-byte to print-grapheme, but it still behaves the same. I'm going to support printing code-points next, but grapheme 'clusters' spanning multiple code-points won't be supported for some time.
* 6699 - start building out fake screenKartik Agaram2020-08-012-4/+4
| | | | | We now have all existing apps and prototypes going through the dependency-injected wrapper, even though it doesn't actually implement the fake screen yet.
* 6601Kartik Agaram2020-06-291-1/+1
|
* 6600Kartik Agaram2020-06-292-2/+2
|
* 6475Kartik Agaram2020-06-054-0/+258