Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 7066 - tile: some more primitives for testing | Kartik Agaram | 2020-10-19 | 3 | -0/+93 |
| | | | | | Lesson learned: functions store args in _reverse_ order. Since evaluation is very frequent, it's worth optimizing for it. | ||||
* | 7065 | Kartik Agaram | 2020-10-19 | 1 | -4/+5 |
| | |||||
* | 7064 | Kartik Agaram | 2020-10-19 | 1 | -16/+25 |
| | |||||
* | 7063 - tile: scaffolding for defining functions | Kartik Agaram | 2020-10-18 | 3 | -6/+121 |
| | |||||
* | 7062 | Kartik Agaram | 2020-10-18 | 1 | -1/+1 |
| | |||||
* | 7061 | Kartik Agaram | 2020-10-18 | 2 | -4/+4 |
| | |||||
* | 7060 - tile: renaming variables now works | Kartik Agaram | 2020-10-18 | 1 | -9/+10 |
| | |||||
* | 7059 | Kartik Agaram | 2020-10-18 | 3 | -21/+139 |
| | | | | | Cursor now in the right place after rename. But stack still doesn't show the value of a name. | ||||
* | 7058 | Kartik Agaram | 2020-10-18 | 3 | -23/+97 |
| | | | | | Snapshot; things seem to be working besides ctrl-r, but we aren't yet rendering only the final line. | ||||
* | 7057 - tile: back to names | Kartik Agaram | 2020-10-18 | 1 | -5/+44 |
| | | | | We can now create new bindings for names while evaluating lines. | ||||
* | 7053 | Kartik Agaram | 2020-10-17 | 4 | -10/+100 |
| | | | | | Rename seems to now be working. State still isn't rendered right, so we can't be sure. | ||||
* | 7051 | Kartik Agaram | 2020-10-17 | 1 | -1/+3 |
| | |||||
* | 7050 | Kartik Agaram | 2020-10-17 | 1 | -2/+13 |
| | |||||
* | 7049 | Kartik Agaram | 2020-10-17 | 1 | -3/+1 |
| | |||||
* | 7048 | Kartik Agaram | 2020-10-17 | 1 | -2/+2 |
| | |||||
* | 7047 | Kartik Agaram | 2020-10-17 | 1 | -0/+24 |
| | |||||
* | 7046 - start of flow for naming words | Kartik Agaram | 2020-10-17 | 2 | -2/+126 |
| | | | | | Names don't stick yet, but we have a scaffolding for printing a dialog and accepting input. | ||||
* | 7045 | Kartik Agaram | 2020-10-16 | 1 | -37/+42 |
| | |||||
* | 7044 | Kartik Agaram | 2020-10-16 | 1 | -286/+286 |
| | |||||
* | 7043 - the REPL is dead; long live the IVL | Kartik Agaram | 2020-10-16 | 1 | -0/+8 |
| | |||||
* | 7042 | Kartik Agaram | 2020-10-15 | 1 | -4/+12 |
| | |||||
* | 7039 | Kartik Agaram | 2020-10-15 | 1 | -1/+0 |
| | | | | | | | Ok, I think we may finally be done crushing all the pesky bugs. And now we can insert and delete words in the middle of a line, and have expanded calls stay stable! | ||||
* | 7038 | Kartik Agaram | 2020-10-15 | 1 | -11/+25 |
| | | | | | Arrow keys now seem to be working right within expanded functions. Still seeing one minor issue with left-arrow skipping words. | ||||
* | 7037 | Kartik Agaram | 2020-10-15 | 2 | -7/+6 |
| | | | | | Expanding words now working, but ctrl-f/ctrl-b inside expanded words not working right. | ||||
* | 7036 | Kartik Agaram | 2020-10-15 | 1 | -6/+1 |
| | | | | ctrl-u now working. | ||||
* | 7035 | Kartik Agaram | 2020-10-15 | 2 | -4/+6 |
| | | | | | ctrl-f and ctrl-b working right. Now ctrl-u is segfaulting. Also expanding words. | ||||
* | 7034 | Kartik Agaram | 2020-10-15 | 2 | -3/+8 |
| | | | | | Finally following up on commit 7020. Ctrl-a and ctrl-e now work, but word-wise motions are still showing some funkiness. | ||||
* | 7021 | Kartik Agaram | 2020-10-14 | 2 | -2/+6 |
| | |||||
* | 7020 | Kartik Agaram | 2020-10-14 | 3 | -182/+89 |
| | | | | | | | | | snapshot: migrating call-path to store word handles rather than word indexes. ctrl-a and ctrl-e are segfaulting. There are likely other problems. The major new change here is that allocating a call-path-element no longer initializes it. | ||||
* | 7019 | Kartik Agaram | 2020-10-14 | 1 | -3/+3 |
| | |||||
* | 7018 - tile: tweak spacing between stacks | Kartik Agaram | 2020-10-13 | 2 | -17/+19 |
| | | | | | Until now the word being typed had a slightly larger invisible margin, which was a little strange. Should look cleaner now. | ||||
* | 7017 | Kartik Agaram | 2020-10-13 | 1 | -14/+14 |
| | |||||
* | 7015 - bugfix in column width computation | Kartik Agaram | 2020-10-13 | 2 | -9/+15 |
| | | | | | I just got bitten by variable shadowing! It's a lot less theoretical concern now. | ||||
* | 7014 | Kartik Agaram | 2020-10-12 | 2 | -5/+28 |
| | | | | 7013 had broken right-justification when rendering the stack. Redo. | ||||
* | 7013 | Kartik Agaram | 2020-10-12 | 3 | -50/+1 |
| | |||||
* | 7011 - tile: keep garbage out of the stack | Kartik Agaram | 2020-10-12 | 2 | -13/+14 |
| | |||||
* | 7010 | Kartik Agaram | 2020-10-12 | 2 | -1/+44 |
| | | | | A new example that better demonstrates the value of named arguments. | ||||
* | 7009 - tile: real hotkey to quit | Kartik Agaram | 2020-10-12 | 2 | -1/+6 |
| | |||||
* | 7008 - tile: center menu | Kartik Agaram | 2020-10-11 | 1 | -0/+3 |
| | |||||
* | 7007 - tile: hotkey to clear sandbox | Kartik Agaram | 2020-10-11 | 1 | -0/+16 |
| | | | | | | Alternative symbols considered for the menu option: ∅ AC (like in a calculator) | ||||
* | 7006 | Kartik Agaram | 2020-10-11 | 1 | -2/+10 |
| | |||||
* | 7005 - tile: move to start/end of line | Kartik Agaram | 2020-10-11 | 2 | -13/+39 |
| | |||||
* | 7004 | Kartik Agaram | 2020-10-11 | 1 | -4/+5 |
| | |||||
* | 7003 | Kartik Agaram | 2020-10-11 | 1 | -4/+4 |
| | |||||
* | 7002 - tile: next-word | Kartik Agaram | 2020-10-11 | 2 | -1/+39 |
| | |||||
* | 7001 | Kartik Agaram | 2020-10-11 | 1 | -8/+3 |
| | |||||
* | 7000 - tile: previous-word also bumps up to caller | Kartik Agaram | 2020-10-11 | 3 | -53/+34 |
| | |||||
* | 6999 - tile: move to previous word | Kartik Agaram | 2020-10-10 | 1 | -0/+15 |
| | |||||
* | 6998 | Kartik Agaram | 2020-10-10 | 1 | -1/+1 |
| | |||||
* | 6997 | Kartik Agaram | 2020-10-10 | 1 | -0/+10 |
| |