about summary refs log tree commit diff stats
path: root/edit/004-programming-environment.mu
Commit message (Collapse)AuthorAgeFilesLines
...
* 2182Kartik K. Agaram2015-09-121-1/+1
|
* 2172 - 'main' for 'mu edit' running just layer 1Kartik K. Agaram2015-09-061-1/+1
| | | | | | | | | 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.
* 2166Kartik K. Agaram2015-09-051-15/+2
|
* 2163Kartik K. Agaram2015-09-051-9/+14
| | | | | | | | `render-string` (and `render-code-string`; ugh) should start a new line after, not before, like everybody else. I've been meaning to fix this for a long time, but now I have to, to move the warnings fields out of early layers.
* 2162Kartik K. Agaram2015-09-051-16/+2
|
* 2161Kartik K. Agaram2015-09-051-8/+8
| | | | | Starting on making the basic programming environment oblivious to warnings. That should come later.
* 2159Kartik K. Agaram2015-09-051-0/+139
|
* 2157 - edit/ now contains real layersKartik K. Agaram2015-09-051-1/+18
| | | | | | | | | 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/+652
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.