Commit message (Expand) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | bugfix: backspace from start of final line | Kartik K. Agaram | 2022-08-10 | 2 | -1/+21 | |
* | unnecessary args | Kartik K. Agaram | 2022-08-10 | 1 | -1/+1 | |
* | hardcode some assumptions about how this app uses love | Kartik K. Agaram | 2022-08-06 | 1 | -18/+11 | |
* | bugfix: imprecision in drawing | Kartik K. Agaram | 2022-08-03 | 2 | -0/+4 | |
* | round one coordinate | Kartik K. Agaram | 2022-07-30 | 1 | -1/+1 | |
* | round coordinates to integers in a few places | Kartik K. Agaram | 2022-07-29 | 1 | -7/+11 | |
* | click to the left of a line | Kartik K. Agaram | 2022-07-29 | 4 | -4/+28 | |
* | copying to clipboard can never scroll | Kartik K. Agaram | 2022-07-27 | 1 | -1/+0 | |
* | line.y -> line_cache.starty in a few more places | Kartik K. Agaram | 2022-07-27 | 3 | -14/+14 | |
* | have file API operate on state object | Kartik K. Agaram | 2022-07-25 | 4 | -21/+20 | |
* | update cursor in search box | Kartik K. Agaram | 2022-07-25 | 1 | -3/+1 | |
* | bugfix: alt-tab shouldn't emit keypress events | Kartik K. Agaram | 2022-07-25 | 1 | -1/+20 | |
* | move | Kartik K. Agaram | 2022-07-25 | 1 | -2/+3 | |
* | simplify hysteresis logic | Kartik K. Agaram | 2022-07-25 | 1 | -8/+3 | |
* | bugfix: skip over drawings when searching | Kartik K. Agaram | 2022-07-25 | 2 | -15/+17 | |
* | extract method | Kartik K. Agaram | 2022-07-23 | 2 | -14/+13 | |
* //: Support jumps to special labels called 'targets'. Targets must be in the
//: same recipe as the jump, and must be unique in that recipe. Targets always
//: start with a '+'.
//:
//: We'll also treat 'break' and 'loop' as jumps. The choice of name is
//: just documentation about intent; use 'break' to indicate you're exiting
//: one or more loop nests, and 'loop' to indicate you're skipping to the next
//: iteration of some containing loop nest.
:(scenario jump_to_label)
recipe main [
jump +target:label
1:number <- copy 0
+target
]
-mem: storing 0 in location 1
:(before "End Mu Types Initialization")
Type_ordinal["label"] = 0;
:(after "int main")
Transform-5/+5 | ||||||
* | switch to line index in a function | Kartik K. Agaram | 2022-07-17 | 3 | -6/+6 | |
* | switch to line index in a function | Kartik K. Agaram | 2022-07-17 | 1 | -15/+16 | |
* | switch to line index in a function | Kartik K. Agaram | 2022-07-17 | 3 | -4/+5 | |
* | drop some extra args | Kartik K. Agaram | 2022-07-17 | 1 | -4/+4 | |
* | drop some redundant args when clearing the cache | Kartik K. Agaram | 2022-07-17 | 2 | -11/+11 | |
* | fold together two largely similar cases | Kartik K. Agaram | 2022-07-17 | 1 | -28/+23 | |
* | drop some redundant args from Text.draw | Kartik K. Agaram | 2022-07-17 | 2 | -5/+6 | |
* | formatting | Kartik K. Agaram | 2022-07-16 | 2 | -3/+3 | |
* | bring back a set of constants | Kartik K. Agaram | 2022-07-16 | 4 | -90/+89 | |
* | more decoupling editor tests from App | Kartik K. Agaram | 2022-07-16 | 1 | -1/+1 | |
* | more decoupling editor tests from App | Kartik K. Agaram | 2022-07-16 | 1 | -3/+3 |