about summary refs log tree commit diff stats
path: root/html/edit
Commit message (Collapse)AuthorAgeFilesLines
* 3856Kartik K. Agaram2017-05-138-448/+449
| | | | | Bugfix on commit 3853: clear `render-all-on-no-more-events` once you've actually run the `render-all`.
* 3855Kartik K. Agaram2017-05-1312-2189/+2231
|
* 3845Kartik K. Agaram2017-05-068-860/+813
|
* 3837Kartik K. Agaram2017-04-192-2/+2
|
* 3831Kartik K. Agaram2017-04-181-1/+1
| | | | Fix CI.
* 3830 - crosslink shape-shifting containers in htmlKartik K. Agaram2017-04-188-171/+171
|
* 3829Kartik K. Agaram2017-04-182-3/+3
|
* 3825Kartik K. Agaram2017-04-1612-2204/+2175
|
* 3820Kartik K. Agaram2017-04-138-514/+504
|
* 3808 - 'length' for duplex listsKartik K. Agaram2017-03-312-10/+10
|
* 3806Kartik K. Agaram2017-03-211-60/+55
|
* 3797Kartik K. Agaram2017-03-1510-740/+738
|
* 3796Kartik K. Agaram2017-03-143-874/+893
| | | | | | 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.
* 3794Kartik K. Agaram2017-03-141-2/+2
| | | | Fix a _very_ misleading comment.
* 3793Kartik K. Agaram2017-03-144-910/+910
| | | | | | Move 'render-code' to the layer where it's used. Thanks Caleb Couch for finding this bit of ugliness.
* 3790Kartik K. Agaram2017-03-127-1040/+1043
| | | | Don't try to snapshot in scenarios.
* 3789Kartik K. Agaram2017-03-127-1045/+1047
| | | | | | | | | | | | | 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-0812-36/+48
|
* 3761Kartik K. Agaram2017-03-0712-4630/+4642
|
* 3748Kartik K. Agaram2017-02-281-1/+1
|
* 3737Kartik K. Agaram2017-01-222-5/+5
|
* 3734Kartik K. Agaram2017-01-119-15/+15
|
* 3732Kartik K. Agaram2017-01-1112-627/+628
|
* 3719 - cross-link Mu waypoints to their locationKartik K. Agaram2016-12-2712-99/+99
|
* 3716Kartik K. Agaram2016-12-2612-0/+24
| | | | Make hyperlinks less salient in the rendered html since there's so many of them.
* 3715Kartik K. Agaram2016-12-2612-1262/+1262
| | | | | | | | 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-2612-918/+918
|
* 3710Kartik K. Agaram2016-12-2612-10969/+10969
| | | | | 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-2612-11017/+11305
| | | | | | 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.
* 3706Kartik K. Agaram2016-12-111-2/+2
|
* 3705 - switch to tested file-system primitivesKartik K. Agaram2016-12-118-462/+543
|
* 3703Kartik K. Agaram2016-12-062-48/+48
|
* 3700Kartik K. Agaram2016-11-284-113/+71
| | | | | | Reorder products of some functions in the edit/ and sandbox/ apps. My recent realization: always return 'real' products before ones that just indicate an ingredient is mutable.
* 3699Kartik K. Agaram2016-11-284-13/+10
| | | | | Delete some obsolete /same-as-ingredient attributes. We should always let Mu deduce those at this point.
* 3697Kartik K. Agaram2016-11-271-13/+2
| | | | | | Decouple programming environment initialization from rendering. This helps make clear that we only need the width from screen during initialization.
* 3696Kartik K. Agaram2016-11-276-168/+193
| | | | | | Decouple editor initialization from rendering to screen. This hugely simplifies the header of 'new-editor' and makes clear that it was only using the screen for rendering.
* 3695Kartik K. Agaram2016-11-271-10/+10
|
* 3687Kartik K. Agaram2016-11-251-1/+1
|
* 3686Kartik K. Agaram2016-11-251-4/+4
|
* 3667Kartik K. Agaram2016-11-113-5/+5
|
* 3604Kartik K. Agaram2016-10-271-2/+4
|
* 3569Kartik K. Agaram2016-10-2312-2281/+2281
| | | | Update syntax highlighting to not color numeric locations like literals.
* 3568Kartik K. Agaram2016-10-2312-46/+46
| | | | Fix syntax highlighting for labels after commit 3552.
* 3567Kartik K. Agaram2016-10-232-2/+2
|
* 3561Kartik K. Agaram2016-10-223-3/+3
|
* 3558Kartik K. Agaram2016-10-2212-45/+45
|
* 3491Kartik K. Agaram2016-10-092-4/+4
| | | | | Update the html, proving that commit 3490 worked. The only changes are from other recent commits.
* 3457Kartik K. Agaram2016-10-0611-751/+751
| | | | | Switch around some unicode characters in the edit/ app so that it renders more cleanly in html (with monospace fonts).
* 3456Kartik K. Agaram2016-10-0611-507/+507
|
* 3431Kartik K. Agaram2016-09-3012-170/+166
| | | | | Improvements to syntax highlighting, particularly for Mu code in C++ files.