about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
* .Kartik K. Agaram2021-04-151-14/+25
|
* .Kartik K. Agaram2021-04-151-6/+4
|
* .Kartik K. Agaram2021-04-151-4/+7
|
* .Kartik K. Agaram2021-04-151-0/+7
|
* .Kartik K. Agaram2021-04-151-0/+1
|
* shell: starting to parse dotted listsKartik K. Agaram2021-04-151-10/+20
|
* shell: dot tokenKartik K. Agaram2021-04-151-0/+58
|
* .Kartik K. Agaram2021-04-151-5/+9
|
* .Kartik K. Agaram2021-04-151-16/+17
|
* shell: load data disk as s-expr rather than stringKartik K. Agaram2021-04-142-13/+29
|
* shell: starting to work on persistent globalsKartik K. Agaram2021-04-141-2/+8
|
* .Kartik K. Agaram2021-04-142-10/+18
|
* shell: primitives for comparison, cursor movementKartik K. Agaram2021-04-141-10/+439
|
* shell: more detailed description of primitivesKartik K. Agaram2021-04-141-12/+44
|
* shell: don't lose pixel graphics when moving cursorKartik K. Agaram2021-04-141-0/+1
|
* shell: word/line navigationKartik K. Agaram2021-04-142-2/+228
|
* .Kartik K. Agaram2021-04-141-6/+6
|
* shell: pixel graphicsKartik K. Agaram2021-04-133-26/+194
|
* .Kartik Agaram2021-04-1342-3659/+6682
|
* shell: full closuresKartik K. Agaram2021-04-101-6/+11
|
* apply doesn't need caller env in lexical scopeKartik K. Agaram2021-04-101-6/+9
|
* shell: none of our primitives need to be closuresKartik K. Agaram2021-04-102-52/+28
|
* shell: streams that you can append graphemes toKartik K. Agaram2021-04-103-2/+110
|
* .Kartik K. Agaram2021-04-102-3/+8
|
* shell: fake keyboardKartik K. Agaram2021-04-103-2/+71
|
* shell: start jumping to keyboard using TabKartik K. Agaram2021-04-102-27/+182
|
* shell: UI now showing fake keyboardKartik K. Agaram2021-04-104-35/+131
| | | | But we don't actually support fake keyboards anywhere yet.
* shell: start on support for fake keyboardKartik K. Agaram2021-04-102-2/+17
|
* shell: move fake screen to sandboxKartik K. Agaram2021-04-105-107/+86
|
* shell: tweaks for fake screensKartik K. Agaram2021-04-102-5/+165
| | | | | - make them more discoverable - clear them between commands
* shell: fake screensKartik K. Agaram2021-04-102-0/+14
| | | | | | | I just realized Mu has a pretty big weakness: writes to null pointers don't error out. Perhaps writes to address 0 do, but address 1 and so on don't? I need a slightly more sophisticated page table.
* .Kartik K. Agaram2021-04-101-54/+54
|
* shell: render fake screensKartik K. Agaram2021-04-103-29/+149
| | | | 'print' turns out to not be working yet.
* .Kartik K. Agaram2021-04-101-1/+1
|
* shell: start of 'print' primitiveKartik K. Agaram2021-04-105-13/+125
|
* shell: structural equality checkKartik K. Agaram2021-04-094-3/+52
| | | | Mu can now compute (factorial 5)
* shell: ifKartik K. Agaram2021-04-091-0/+41
|
* shell: highlight matching paren for cursorKartik K. Agaram2021-04-092-17/+301
|
* shell: highlight matching close-parenKartik K. Agaram2021-04-093-3/+114
|
* .Kartik K. Agaram2021-04-091-10/+6
|
* shell: render primitives at the bottomKartik K. Agaram2021-04-081-2/+44
|
* .Kartik K. Agaram2021-04-082-2/+5
|
* shell: start rendering globalsKartik K. Agaram2021-04-082-1/+38
|
* shell: create space to display globalsKartik K. Agaram2021-04-084-5/+61
|
* shell: ctrl-u to clear sandboxKartik K. Agaram2021-04-061-4/+14
|
* shell: 'set' for defining globalsKartik K. Agaram2021-04-062-0/+62
| | | | Currently stateful, but still good for things.
* shell: quoteKartik K. Agaram2021-04-064-0/+76
|
* shell: now we can start adding primitivesKartik K. Agaram2021-04-062-0/+314
|
* shell: look up globalsKartik K. Agaram2021-04-062-31/+53
|
* shell: extensible array of globalsKartik K. Agaram2021-04-054-95/+151
| | | | I'm not bothering with full dynamic scope for now.