about summary refs log tree commit diff stats
path: root/html/edit/004-programming-environment.mu.html
Commit message (Collapse)AuthorAgeFilesLines
* 5485 - promote SubX to top-levelKartik Agaram2019-07-271-614/+0
|
* 4891Kartik Agaram2018-12-301-0/+1
| | | | | | | | | | | Couple more tweaks to html rendering: a) SubX definitions no longer link redundantly to themselves. This long-standing issue turns out to be tractable to solve for SubX files since the syntax is so simple. b) Fix links to SubX definitions in other directories. I forgot that I have to always generate tags from the directory of the file being linkified. c) Fix link colors. Before we lost all syntax highlighting for functions and Globals. Now they maintain their colors, just add an underline.
* 4890 - new html renderingsKartik Agaram2018-12-291-15/+10
| | | | | | | a) Switch to a light background. b) Linkify calls in .subx files. c) Keep all colorization in the Vim colorscheme, get rid of hacky special-cases in update_html.
* 4814Kartik Agaram2018-12-011-0/+1
|
* 4809 - subx: html with 5 colors for commentsKartik Agaram2018-11-301-11/+13
|
* 4539Kartik Agaram2018-09-071-7/+7
|
* 4447Kartik Agaram2018-07-271-26/+26
|
* 4239Kartik Agaram2018-05-081-6/+6
|
* 4209Kartik K. Agaram2018-02-181-117/+113
|
* 4200Kartik K. Agaram2018-01-271-106/+106
| | | | Forgot to set up exuberant_ctags_rc as .ctags on new laptop.
* 4199Kartik K. Agaram2018-01-251-297/+296
|
* 4165Kartik K. Agaram2017-12-271-9/+9
|
* 4161Kartik K. Agaram2017-12-151-7/+7
|
* 4134 - 'input' = 'ingredient'Kartik K. Agaram2017-12-031-11/+11
|
* 4008Kartik K. Agaram2017-09-251-7/+7
| | | | | Allow list `push` operation to save result in a new list rather than mutate the existing list.
* 3983Kartik K. Agaram2017-08-221-2/+2
|
* 3951Kartik K. Agaram2017-06-241-181/+184
|
* 3928Kartik K. Agaram2017-06-191-3/+3
|
* 3927Kartik K. Agaram2017-06-191-156/+158
|
* 3904Kartik K. Agaram2017-06-091-8/+8
| | | | Standardize functions to put the main object being modified first.
* 3902 - drop redundant redraw of recipe side on F4Kartik K. Agaram2017-06-091-98/+99
| | | | | | 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.)
* 3883Kartik K. Agaram2017-05-271-14/+14
|
* 3870 - seldom draw both sides of edit/Kartik K. Agaram2017-05-201-486/+493
|
* 3867Kartik K. Agaram2017-05-191-442/+453
|
* 3856Kartik K. Agaram2017-05-131-418/+419
| | | | | Bugfix on commit 3853: clear `render-all-on-no-more-events` once you've actually run the `render-all`.
* 3855Kartik K. Agaram2017-05-131-458/+484
|
* 3845Kartik K. Agaram2017-05-061-505/+456
|
* 3830 - crosslink shape-shifting containers in htmlKartik K. Agaram2017-04-181-4/+4
|
* 3825Kartik K. Agaram2017-04-161-474/+457
|
* 3820Kartik K. Agaram2017-04-131-486/+476
|
* 3797Kartik K. Agaram2017-03-151-375/+374
|
* 3793Kartik K. Agaram2017-03-141-116/+53
| | | | | | Move 'render-code' to the layer where it's used. Thanks Caleb Couch for finding this bit of ugliness.
* 3764 - better colors for cross-linksKartik K. Agaram2017-03-081-3/+4
|
* 3761Kartik K. Agaram2017-03-071-319/+320
|
* 3734Kartik K. Agaram2017-01-111-3/+3
|
* 3732Kartik K. Agaram2017-01-111-13/+13
|
* 3719 - cross-link Mu waypoints to their locationKartik K. Agaram2016-12-271-10/+10
|
* 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-107/+107
| | | | | | | | 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-102/+102
|
* 3710Kartik K. Agaram2016-12-261-642/+642
| | | | | 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-646/+670
| | | | | | 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-40/+41
|
* 3700Kartik K. Agaram2016-11-281-2/+2
| | | | | | 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-281-2/+2
| | | | | 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-271-2/+2
| | | | | | 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.
* 3569Kartik K. Agaram2016-10-231-207/+207
| | | | Update syntax highlighting to not color numeric locations like literals.
* 3568Kartik K. Agaram2016-10-231-15/+15
| | | | Fix syntax highlighting for labels after commit 3552.
* 3567Kartik K. Agaram2016-10-231-1/+1
|