about summary refs log tree commit diff stats
path: root/html/edit/007-sandbox-delete.mu.html
Commit message (Collapse)AuthorAgeFilesLines
* 5485 - promote SubX to top-levelKartik Agaram2019-07-271-406/+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-18/+18
|
* 4239Kartik Agaram2018-05-081-5/+5
|
* 4209Kartik K. Agaram2018-02-181-2/+2
|
* 4200Kartik K. Agaram2018-01-271-40/+40
| | | | Forgot to set up exuberant_ctags_rc as .ctags on new laptop.
* 4199Kartik K. Agaram2018-01-251-189/+188
|
* 4165Kartik K. Agaram2017-12-271-2/+2
|
* 4161Kartik K. Agaram2017-12-151-6/+6
|
* 4134 - 'input' = 'ingredient'Kartik K. Agaram2017-12-031-3/+3
|
* 3983Kartik K. Agaram2017-08-221-1/+1
|
* 3962Kartik K. Agaram2017-06-271-6/+6
| | | | | Yet another regression, this time cascading from commit 3953. My scenario wasn't actually testing what I thought it was testing.
* 3959Kartik K. Agaram2017-06-251-1/+1
| | | | | | | 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-1/+1
| | | | | | | | 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-6/+6
|
* 3951Kartik K. Agaram2017-06-241-30/+30
|
* 3927Kartik K. Agaram2017-06-191-12/+12
|
* 3903 - minimal render when pressing 'tab'Kartik K. Agaram2017-06-091-6/+6
| | | | Turns out all I had to do was reset `go-render?` to false.
* 3902 - drop redundant redraw of recipe side on F4Kartik K. Agaram2017-06-091-328/+329
| | | | | | 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-22/+22
|
* 3871Kartik K. Agaram2017-05-201-1/+1
| | | | | | | | 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-6/+6
|
* 3869Kartik K. Agaram2017-05-191-6/+6
| | | | Clean up a few superficial things in Caleb's commit.
* 3867Kartik K. Agaram2017-05-191-267/+265
|
* 3856Kartik K. Agaram2017-05-131-5/+5
| | | | | Bugfix on commit 3853: clear `render-all-on-no-more-events` once you've actually run the `render-all`.
* 3855Kartik K. Agaram2017-05-131-266/+268
|
* 3845Kartik K. Agaram2017-05-061-6/+6
|
* 3825Kartik K. Agaram2017-04-161-267/+265
|
* 3820Kartik K. Agaram2017-04-131-5/+5
|
* 3797Kartik K. Agaram2017-03-151-5/+5
|
* 3790Kartik K. Agaram2017-03-121-1/+1
| | | | Don't try to snapshot in scenarios.
* 3789Kartik K. Agaram2017-03-121-1/+1
| | | | | | | | | | | | | 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-167/+168
|
* 3734Kartik K. Agaram2017-01-111-1/+1
|
* 3732Kartik K. Agaram2017-01-111-5/+5
|
* 3719 - cross-link Mu waypoints to their locationKartik K. Agaram2016-12-271-1/+1
|
* 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-40/+40
| | | | | | | | 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-24/+24
|
* 3710Kartik K. Agaram2016-12-261-343/+343
| | | | | 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-347/+371
| | | | | | 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-16/+26
|
* 3667Kartik K. Agaram2016-11-111-1/+1
|
* 3569Kartik K. Agaram2016-10-231-42/+42
| | | | 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.