about summary refs log tree commit diff stats
path: root/514gap-buffer.mu
Commit message (Collapse)AuthorAgeFilesLines
* .Kartik K. Agaram2021-10-031-1/+0
|
* fix bad terminology: grapheme -> code pointKartik K. Agaram2021-08-291-2/+2
| | | | | | | | | | Unix text-mode terminals transparently support utf-8 these days, and so I treat utf-8 sequences (which I call graphemes in Mu) as fundamental. I then blindly carried over this state of affairs to bare-metal Mu, where it makes no sense. If you don't have a terminal handling font-rendering for you, fonts are most often indexed by code points and not utf-8 sequences.
* .Kartik K. Agaram2021-08-281-14/+14
| | | | Convert some old code to current idioms.
* move gap buffer code to top-levelKartik K. Agaram2021-08-151-0/+1470
Now that it's been used in a second app without needing any changes.