about summary refs log tree commit diff stats
path: root/edit/001-editor.mu
Commit message (Collapse)AuthorAgeFilesLines
...
* 2368 - start getting edit working againKartik K. Agaram2015-11-051-16/+11
| | | | | Still seeing repeated null refinements. Maybe my approach to fixing those errors is fundamentally broken.
* 2309Kartik K. Agaram2015-10-281-17/+17
|
* 2172 - 'main' for 'mu edit' running just layer 1Kartik K. Agaram2015-09-061-0/+13
| | | | | | | | | Takes the text to render inside the editor on the commandline: $ ./mu edit/001-editor.mu -- abcdef Layer 1 has no interactivity. Just shows the text you pass in on the commandline, wrapping as you would expect. Press any key to exit.
* 2159Kartik K. Agaram2015-09-051-139/+0
|
* 2157 - edit/ now contains real layersKartik K. Agaram2015-09-051-0/+1
| | | | | | | | | To run just until say layer 6, say this: $ ./mu test edit/00[0-6]* The layers are not perfect yet; there might be a few things (like the warning fields) that need to move to a later layer.
* 2156 - split edit.mu into multiple filesKartik K. Agaram2015-09-051-0/+625
Now you can bring up the programming environment by saying: $ mu edit The files under edit aren't yet *layers*, though, they have a few dependencies that we need to clean up.