about summary refs log tree commit diff stats
path: root/html/edit/011-errors.mu.html
Commit message (Collapse)AuthorAgeFilesLines
* 4134 - 'input' = 'ingredient'Kartik K. Agaram2017-12-031-3/+3
|
* 4122Kartik K. Agaram2017-11-151-1/+1
|
* 4008Kartik K. Agaram2017-09-251-1/+1
| | | | | Allow list `push` operation to save result in a new list rather than mutate the existing list.
* 4003Kartik K. Agaram2017-09-231-1/+1
|
* 3984 - bugfix: display errors when scrolling recipe sideKartik K. Agaram2017-08-251-733/+771
| | | | This regression was (also) introduced by commit 3902 in June.
* 3983Kartik K. Agaram2017-08-221-689/+754
|
* 3959Kartik K. Agaram2017-06-251-6/+6
| | | | | | | Don't unnecessarily write sandboxes to disk on F4. This seems to save almost 20% time when processing a large lesson directory with 36 sandboxes.
* 3958Kartik K. Agaram2017-06-251-3/+3
| | | | | | | | Improvement on fix 3957: rather than put a band-aid over a slow operation, eliminate the slowdown entirely. In this case it turns out we're unnecessarily saving files to disk when they could never be modified. Are we doing this on F4 as well?!
* 3956Kartik K. Agaram2017-06-251-571/+563
|
* 3951Kartik K. Agaram2017-06-241-61/+61
|
* 3928Kartik K. Agaram2017-06-191-1/+1
|
* 3927Kartik K. Agaram2017-06-191-17/+17
|
* 3902 - drop redundant redraw of recipe side on F4Kartik K. Agaram2017-06-091-662/+675
| | | | | | This change is interesting because I only updated one test to gain confidence that F4 will never redraw the recipe side. (Most of the changes are to explicitly render-all before each scenario.)
* 3901Kartik K. Agaram2017-06-091-1/+1
|
* 3895Kartik K. Agaram2017-05-291-1/+1
|
* 3883Kartik K. Agaram2017-05-271-12/+12
|
* 3871Kartik K. Agaram2017-05-201-3/+3
| | | | | | | | Strange race condition: if I repeatedly press <enter> and <backspace> so the screen is constantly playing catch up, it will sometimes fail these assertions when it does eventually catch up. Somehow the cursor ends up misplaced. Let's just take them out. It's likely some low-level implementation detail of the terminal.
* 3870 - seldom draw both sides of edit/Kartik K. Agaram2017-05-201-4/+4
|
* 3869Kartik K. Agaram2017-05-191-3/+3
| | | | Clean up a few superficial things in Caleb's commit.
* 3867Kartik K. Agaram2017-05-191-5/+5
|
* 3856Kartik K. Agaram2017-05-131-4/+4
| | | | | Bugfix on commit 3853: clear `render-all-on-no-more-events` once you've actually run the `render-all`.
* 3855Kartik K. Agaram2017-05-131-5/+5
|
* 3845Kartik K. Agaram2017-05-061-4/+4
|
* 3837Kartik K. Agaram2017-04-191-1/+1
|
* 3830 - crosslink shape-shifting containers in htmlKartik K. Agaram2017-04-181-2/+2
|
* 3829Kartik K. Agaram2017-04-181-1/+1
|
* 3825Kartik K. Agaram2017-04-161-5/+5
|
* 3820Kartik K. Agaram2017-04-131-4/+4
|
* 3797Kartik K. Agaram2017-03-151-4/+4
|
* 3796Kartik K. Agaram2017-03-141-1/+1
| | | | | | Standardize the order of some common blocks in `render`, `render-text` and `render-code`. This is preparation for trying to reorganize them to reduce duplicate code.
* 3793Kartik K. Agaram2017-03-141-1/+1
| | | | | | Move 'render-code' to the layer where it's used. Thanks Caleb Couch for finding this bit of ugliness.
* 3790Kartik K. Agaram2017-03-121-6/+6
| | | | Don't try to snapshot in scenarios.
* 3789Kartik K. Agaram2017-03-121-6/+6
| | | | | | | | | | | | | I accidentally got rid of git snapshotting of lessons back when I switched to testable file primitives last December (commit 3705). >:-( Bringing it back now, hopefully better. The improvement is that there's now at most one commit every time we hit F4. This change adds yet another reason that running `mu` from a different directory is just not supported.
* 3764 - better colors for cross-linksKartik K. Agaram2017-03-081-3/+4
|
* 3761Kartik K. Agaram2017-03-071-378/+379
|
* 3734Kartik K. Agaram2017-01-111-1/+1
|
* 3732Kartik K. Agaram2017-01-111-1/+1
|
* 3719 - cross-link Mu waypoints to their locationKartik K. Agaram2016-12-271-7/+7
|
* 3716Kartik K. Agaram2016-12-261-0/+2
| | | | Make hyperlinks less salient in the rendered html since there's so many of them.
* 3715Kartik K. Agaram2016-12-261-47/+47
| | | | | | | | Fix cross-links in html for the edit/ app. I originally thought I'd need to provide a commandline flag like --rel-path or something. But we need to support different relative paths in a single html file. So the solution instead is appropriately engineering the tags file.
* 3713 - cross-link calls with definitions in htmlKartik K. Agaram2016-12-261-46/+46
|
* 3710Kartik K. Agaram2016-12-261-742/+742
| | | | | Turns out we don't need to explicitly add anchors for each line. Vim's TOhtml has magic for that out of the box.
* 3709 - line numbers in htmlKartik K. Agaram2016-12-261-746/+770
| | | | | | Each line number also gets an anchor name, but I'm not hyperlinking them for now because I don't want to encourage bookmarking these links just yet. They aren't permalinks because every revision may change what's at any given line number.
* 3705 - switch to tested file-system primitivesKartik K. Agaram2016-12-111-144/+197
|
* 3604Kartik K. Agaram2016-10-271-2/+4
|
* 3569Kartik K. Agaram2016-10-231-66/+66
| | | | Update syntax highlighting to not color numeric locations like literals.
* 3568Kartik K. Agaram2016-10-231-1/+1
| | | | Fix syntax highlighting for labels after commit 3552.
* 3561Kartik K. Agaram2016-10-221-1/+1
|
* 3558Kartik K. Agaram2016-10-221-1/+1
|
* 3457Kartik K. Agaram2016-10-061-132/+132
| | | | | Switch around some unicode characters in the edit/ app so that it renders more cleanly in html (with monospace fonts).