about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* run sandbox even when cursor in functionKartik K. Agaram2021-06-041-0/+7
|
* bugfix: show functions after ctrl-g, enterKartik K. Agaram2021-06-041-1/+8
|
* .Kartik K. Agaram2021-06-041-0/+24
| | | | Menu when cursor is within a function.
* select function to render firstKartik K. Agaram2021-06-042-1/+11
|
* always render functions starting at the cursorKartik K. Agaram2021-06-041-2/+4
| | | | For now we just never render definitions above it. That will improve.
* record the definition the cursor is currently atKartik K. Agaram2021-06-041-1/+10
|
* conditionally display cursor on function sideKartik K. Agaram2021-06-042-4/+5
| | | | | Always shows at top-most function. Can't actually do any editing yet.
* conditionally display cursor in sandboxKartik K. Agaram2021-06-042-35/+45
|
* modal dialog for function name to jump toKartik K. Agaram2021-06-042-2/+115
|
* hacky colors for registersKartik K. Agaram2021-06-041-1/+16
|
* .Kartik K. Agaram2021-06-042-3/+3
|
* .Kartik K. Agaram2021-06-041-4/+4
|
* .Kartik K. Agaram2021-06-041-0/+54
| | | | Keyboard state machine for jumping to function definition.
* .Kartik K. Agaram2021-06-042-0/+6
| | | | Menu shortcut for jumping to function definition.
* .Kartik K. Agaram2021-06-042-11/+11
|
* .Kartik K. Agaram2021-06-042-5/+5
| | | | Keep hotkeys stable when different elements are in focus.
* .Kartik K. Agaram2021-06-044-10/+10
|
* .Kartik K. Agaram2021-06-041-2/+2
|
* .Kartik K. Agaram2021-06-041-3/+3
|
* .Kartik K. Agaram2021-06-041-2/+2
|
* .Kartik K. Agaram2021-06-041-2/+0
|
* .Kartik K. Agaram2021-06-041-5/+5
|
* .Kartik K. Agaram2021-06-041-2/+2
|
* .Kartik K. Agaram2021-06-041-1/+1
|
* more convenient 'def'Kartik K. Agaram2021-06-041-30/+32
|
* rename the definition primitive to 'def'Kartik K. Agaram2021-06-044-40/+40
|
* .Kartik K. Agaram2021-06-033-7/+22
|
* starting to support function editingKartik K. Agaram2021-06-032-1/+13
|
* .Kartik K. Agaram2021-06-032-1597/+1601
|
* .Kartik K. Agaram2021-06-032-156/+184
|
* .Kartik K. Agaram2021-06-031-5/+5
|
* .Kartik K. Agaram2021-06-032-17/+14
|
* .Kartik K. Agaram2021-06-031-2/+2
|
* .Kartik K. Agaram2021-06-031-2/+15
| | | | Drop some low-entropy trace lines.
* shell: more stable trace when rerunningKartik K. Agaram2021-06-023-3/+252
|
* .Kartik K. Agaram2021-06-021-2/+2
|
* .Kartik Agaram2021-05-311-17/+19
| | | | State as of https://archive.org/details/akkartik-mu-2021-05-31
* .Kartik Agaram2021-05-311-3/+5
| | | | | Until we get scrolling on functions, it's a little cleaner to draw the primitives on top.
* interrupt repl on keypressKartik K. Agaram2021-05-311-1/+7
|
* .Kartik K. Agaram2021-05-311-8/+8
|
* .Kartik K. Agaram2021-05-314-34/+36
|
* .Kartik Agaram2021-05-3145-8126/+9504
|
* clean up trace depth in a few placesKartik K. Agaram2021-05-311-0/+3
| | | | | It turns out the problem was that `and` wasn't cleaning up after itself when it short-circuited evaluation. Similar problems in a couple more places.
* .Kartik K. Agaram2021-05-311-0/+2
|
* bugfix for disappearing traceKartik K. Agaram2021-05-311-0/+2
| | | | | | | | It turns out I have a problem with trace depth somewhere which I just wasn't noticing before. Running certain sandboxes (line; maybe loops?) twice was causing traces to no longer start at depth 1, which implies that they weren't terminating at depth 1. This became a lot more obvious since I instituted a max-depth.
* .Kartik K. Agaram2021-05-311-3/+3
|
* data.limg now loading properly againKartik K. Agaram2021-05-312-2/+8
|
* clearer testKartik K. Agaram2021-05-311-34/+3
| | | | | It actually has nothing to do with macros. I just wasn't supporting backquotes outside macros before.
* multi-macroexpanding backquote != nested backquoteKartik K. Agaram2021-05-311-1/+129
| | | | | | | | | | | | | | | | | | | | | This was quite difficult to diagnose. The issue I noticed was that brline had stopped working. All the bugs in previous commits were hiding the cause. Once I cleaned them up, I realized the problem was that the `(,x0 ,y0) was triggering the nested-backquote check. The fix was fairly straightforward then (even though I didn't yet understand why). But how to write a test for this? I spent some time trying to do so without defining a macro using literal macros, before I realized: You can't call literal macros; we don't have first-class macros. Trying to insert literal macro support just breaks everything because we have no way to distinguish between a literal macro call and the stage in macroexpand where a symbol has been replaced with its macro definition. How do you explain stuff like this? I grow weary of Lisp. There's still some issue in loading the entire definition of brline from data.limg.
* clean up a few things in macro testsKartik K. Agaram2021-05-311-57/+46
|