about summary refs log tree commit diff stats
path: root/edit/006-sandbox-edit.mu
Commit message (Collapse)AuthorAgeFilesLines
* 2309Kartik K. Agaram2015-10-281-7/+7
|
* 2260 - start tracing by depth rather than labelKartik K. Agaram2015-10-061-2/+2
| | | | Now we can collect all traces, just modulating the depth.
* 2247 - type-check products of non-primitive recipesKartik K. Agaram2015-10-051-3/+3
| | | | | | | | We still can't check ingredient types, and even this is still a run-time check. We'll need to start tracking recipe signatures at some point. I've had to introduce a hack called /skiptypecheck. Time to get generics working.
* 2183 - environment + external editor using tmuxKartik K. Agaram2015-09-121-6/+3
| | | | Thanks Jack and Caleb Couch for the idea.
* 2157 - edit/ now contains real layersKartik K. Agaram2015-09-051-0/+46
| | | | | | | | | 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/+128
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.