about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* 1967Kartik K. Agaram2015-08-101-9/+14
|
* 1966Kartik K. Agaram2015-08-101-19/+19
|
* 1965 - don't die on '-' ingredientKartik K. Agaram2015-08-101-1/+13
| | | | Thanks Caleb Couch.
* 1964 - don't mess up pasteKartik K. Agaram2015-08-095-13/+115
| | | | | | | It took me a long time to fix termbox because the escape codes it was seeing seemed all wrong. Had to stop calling tb_shutdown/printf and put in the extra 3 lines to log to a file. Then everything cleared up. Weird.
* 1963 - redraw if window size changesKartik K. Agaram2015-08-093-5/+60
| | | | | This was important because somebody connecting on tmux would mess up the environment.
* 1962Kartik K. Agaram2015-08-099-29/+29
| | | | Standardize test names.
* 1961Kartik K. Agaram2015-08-091-558/+556
|
* 1960 - far more careful scroll-line-upKartik K. Agaram2015-08-091-50/+354
|
* 1960Kartik K. Agaram2015-08-091-2/+2
|
* 1959 - switch page-up to ignore line-wrappingKartik K. Agaram2015-08-091-5/+29
| | | | | | | Worrisome that I'm not adding a test here. Still not convinced I have the right set of tests. There's certainly still breakage when I run tests manually. Perhaps I should test all combinations of arrow keys and page-up/page-down. That's 36 tests for 2-combinations..
* 1958 - reimplement page-upKartik K. Agaram2015-08-081-20/+15
| | | | | The old approach with cached page starts doesn't work when you mix scrolling by line and page.
* 1957 - bugfix #2 in scrollingKartik K. Agaram2015-08-081-7/+57
| | | | | | (#1 was previous commit) Thanks Caleb Couch.
* 1956Kartik K. Agaram2015-08-081-4/+42
|
* 1955Kartik K. Agaram2015-08-081-12/+12
|
* 1954 - ignore junk charactersKartik K. Agaram2015-08-071-0/+5
|
* 1953 - more warningsKartik K. Agaram2015-08-072-10/+41
|
* 1952Kartik K. Agaram2015-08-071-0/+8
|
* 1951 - warn when copying scalars to arrays, etc.Kartik K. Agaram2015-08-073-0/+44
|
* 1950Kartik K. Agaram2015-08-071-7/+7
|
* 1949Kartik K. Agaram2015-08-0659-2215/+3346
|
* 1948Kartik K. Agaram2015-08-062-4/+4
|
* 1947 - done with situations needing scroll-upKartik K. Agaram2015-08-061-2/+54
|
* 1946 - done with situations needing scroll-downKartik K. Agaram2015-08-061-7/+108
|
* 1945Kartik K. Agaram2015-08-062-20/+72
| | | | | | Turns out it is indeed useful to insert code at multiple duplicate labels within a single (long) recipe. Like handle-keyboard-event in edit.mu.
* 1944Kartik K. Agaram2015-08-061-4/+38
| | | | | Amazing, now I can change behavior simply by adding a label rather than any code.
* 1943Kartik K. Agaram2015-08-051-1/+119
|
* 1942Kartik K. Agaram2015-08-051-11/+90
|
* 1941Kartik K. Agaram2015-08-051-1/+73
|
* 1940 - scroll when moving cursor off-screenKartik K. Agaram2015-08-051-9/+88
| | | | Uses the new support for nested tangling.
* 1939 - allow nested tanglingKartik K. Agaram2015-08-051-30/+49
| | | | However, you can't have duplicate labels within a single recipe.
* 1938 - warn on unused before/after fragmentsKartik K. Agaram2015-08-051-0/+27
|
* 1937Kartik K. Agaram2015-08-051-0/+4
|
* 1936Kartik K. Agaram2015-08-051-1/+1
|
* 1935Kartik K. Agaram2015-08-051-34/+34
|
* 1934Kartik K. Agaram2015-08-041-2/+5
|
* 1933 - bugfix: backspace now works on right sideKartik K. Agaram2015-08-042-14/+34
|
* 1932Kartik K. Agaram2015-08-041-0/+63
|
* 1931 - basic support for scrollingKartik K. Agaram2015-08-042-10/+294
| | | | Still need to fix all the todo's in edit.mu dealing with scrolling.
* 1930Kartik K. Agaram2015-08-041-102/+105
|
* 1929Kartik K. Agaram2015-08-041-60/+60
|
* 1928 - bugfix: ctrl-uKartik K. Agaram2015-08-041-2/+29
|
* 1927 - reorganize handlers for keyboard shortcutsKartik K. Agaram2015-08-041-308/+360
|
* 1926Kartik K. Agaram2015-08-034-11/+7
| | | | | | | http://250bpm.com/blog:57 Funnily, the new idea I finally came up with in 'read' was already mirrored above in recipe 'write'.
* 1925Kartik K. Agaram2015-08-0357-959/+1644
|
* 1924 - handle delete key in editorKartik K. Agaram2015-08-031-0/+36
|
* 1923Kartik K. Agaram2015-08-0214-29/+35
| | | | | | | | | | Still iterating on the right way to handle incorrect number of ingredients. My first idea of creating null results doesn't really work once they're used in later instructions. Just add a warning at one place in the run loop, but otherwise only add products when there's something to save in them. Undoes some work around commit 1886.
* 1922Kartik K. Agaram2015-08-022-3/+52
|
* 1921 - show trace by clicking on codeKartik K. Agaram2015-08-028-26/+201
| | | | | | | Region to click on to edit is now reduced to just the menu bar for the sandbox (excluding the 'x' for deleting the sandbox). The symmetry there might be useful, but we'll see if the relative click area is in line with how commonly the actions are performed.
* 1920 - gracefully handle typo in inferred typeKartik K. Agaram2015-08-021-1/+10
| | | | Thanks Caleb Couch.
* 1919Kartik K. Agaram2015-08-021-6/+6
| | | | | Generalize a little layer as a first step to providing traces for other layers.