about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
* 3834Kartik K. Agaram2017-04-181-0/+2
|
* 3833Kartik K. Agaram2017-04-183-3/+28
| | | | Loosen type-checking slightly to accomodate type abbreviations.
* 3832Kartik K. Agaram2017-04-181-8/+27
| | | | | More fixes for commit 3828 (supporting buffers of something other than characters).
* 3831Kartik K. Agaram2017-04-187-15/+15
| | | | Fix CI.
* 3830 - crosslink shape-shifting containers in htmlKartik K. Agaram2017-04-1827-567/+567
|
* 3829Kartik K. Agaram2017-04-1811-1345/+1345
|
* 3828 - make buffers shape-shifting (generic)Kartik K. Agaram2017-04-184-24/+23
|
* 3827Kartik K. Agaram2017-04-181-0/+1
|
* 3826Kartik K. Agaram2017-04-161-173/+0
|
* 3825Kartik K. Agaram2017-04-1619-3654/+3541
|
* 3824 - experiment: stop buffering in termboxKartik K. Agaram2017-04-1623-344/+25
| | | | | | | | | | | | | | | | Now it's much more apparent why things are slow. You can see each repaint happening. Already I fixed one performance bug -- in clear-rest-of-screen. Since this subverts Mu's fake screen there may be bugs. Another salubrious side effect: I've finally internalized that switching to raw mode doesn't have to clear the screen. That was just an artifact of how termbox abstracted operations. Now I can conceive of using termbox to build a repl as well. (I was inspired to poke into termbox internals by http://viewsourcecode.org/snaptoken/kilo and https://github.com/antirez/linenoise)
* 3823Kartik K. Agaram2017-04-148-1561/+1571
|
* 3822Kartik K. Agaram2017-04-142-0/+9
| | | | | | Provide an option to disable memory reclamation. This makes edit/ *much* more responsive. The cost: memory use grows monotonically. Since we no longer have a safe way to reclaim heap allocations, we never do so.
* 3821Kartik K. Agaram2017-04-131-0/+1
| | | | Fix CI.
* 3820Kartik K. Agaram2017-04-1318-2561/+2609
|
* 3819Kartik K. Agaram2017-04-134-16/+18
| | | | | | | Yet another attempt at trying to clean up commit 3216. I think this solution might finally let me stop agonizing over the problem. State variables for distinguishing call-sites are a reasonable mechanism, orthogonal to waypoints and the hook functions to hold them.
* 3818 - better error messages on type mismatchKartik K. Agaram2017-04-131-1/+50
| | | | Thanks Ella Couch for suggesting this approach.
* 3817 - better errors on streams from null textsKartik K. Agaram2017-04-131-0/+6
| | | | Thanks Ella Couch for reporting this issue.
* 3816Kartik K. Agaram2017-04-061-12/+2
| | | | | | | | Resize events don't actually seem to ever get queued up, so they're still super slow. Dump all our extra smarts about skipping repaints. We need to focus on speeding up repaints in general. Thanks Andrew Owen for reporting this issue.
* 3815Kartik K. Agaram2017-04-061-1/+1
| | | | | Turns out enabling profiling requires '-pg' to also be passed in to the linker. Might as well pass all flags everywhere.
* 3814Kartik K. Agaram2017-04-061-0/+1
| | | | | | Initial baby steps at trying to understand why rendering to screen is so slow in Mu. I'd forgotten about this old "poor man's profiler" I'd added back in 2015.
* 3813Kartik K. Agaram2017-04-042-8/+8
|
* 3812Kartik K. Agaram2017-04-042-6/+6
| | | | Fix CI.
* 3811Kartik K. Agaram2017-04-046-8/+8
|
* 3810Kartik K. Agaram2017-04-046-34/+34
| | | | | | | Stop naming 'jump' instructions in their errors since they're so often rewritten from 'break' or 'loop' instructions. Thanks Lakshman Swaminathan for running into this issue.
* 3809Kartik K. Agaram2017-04-046-233/+235
|
* 3808 - 'length' for duplex listsKartik K. Agaram2017-03-316-766/+796
|
* 3807Kartik K. Agaram2017-03-311-3/+3
| | | | Handle CFLAGS like "-g -O3 -pg" while compiling.
* 3806Kartik K. Agaram2017-03-213-78/+63
|
* 3805Kartik K. Agaram2017-03-202-207/+291
|
* 3804Kartik K. Agaram2017-03-201-2/+2
| | | | Drop the inaccurate cross-links to 'truncate' everywhere.
* 3803Kartik K. Agaram2017-03-206-226/+224
|
* 3802 - more accurate sandbox resultsKartik K. Agaram2017-03-204-482/+524
| | | | Thanks Lakshman Swaminathan for reporting this issue.
* 3801Kartik K. Agaram2017-03-202-10/+10
|
* 3800Kartik K. Agaram2017-03-182-449/+489
|
* 3799Kartik K. Agaram2017-03-184-6/+6
|
* 3798 - trace-browser: make search like in viKartik K. Agaram2017-03-152-448/+490
|
* 3797Kartik K. Agaram2017-03-1514-744/+738
|
* 3796Kartik K. Agaram2017-03-145-926/+968
| | | | | | 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.
* 3795Kartik K. Agaram2017-03-142-5/+5
|
* 3794Kartik K. Agaram2017-03-143-6/+6
| | | | Fix a _very_ misleading comment.
* 3793Kartik K. Agaram2017-03-148-1036/+1036
| | | | | | Move 'render-code' to the layer where it's used. Thanks Caleb Couch for finding this bit of ugliness.
* 3792Kartik K. Agaram2017-03-122-267/+317
| | | | | | | Bugfix: make sure 'print 0, 0' always does the right thing, no matter how it's overloaded. Thanks Ella Couch for reporting this.
* 3791Kartik K. Agaram2017-03-124-1467/+1391
| | | | Simpler way to do commit 2929.
* 3790Kartik K. Agaram2017-03-129-1042/+1051
| | | | Don't try to snapshot in scenarios.
* 3789Kartik K. Agaram2017-03-1210-1046/+1062
| | | | | | | | | | | | | 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.
* 3788Kartik K. Agaram2017-03-122-796/+805
|
* 3787Kartik K. Agaram2017-03-122-12/+12
|
* 3786Kartik K. Agaram2017-03-101-2/+11
| | | | https://www.reddit.com/r/badcode/comments/5xo3qv/its_better_to_have_it_all_on_one_line_right/delodzn
* 3785Kartik K. Agaram2017-03-102-107/+111
| | | | Don't show empty hidden counts in the trace-browser.