Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 2027 | Kartik K. Agaram | 2015-08-16 | 1 | -33/+57 |
| | |||||
* | 2026 | Kartik K. Agaram | 2015-08-16 | 1 | -27/+57 |
| | |||||
* | 2025 - back to speeding up render | Kartik K. Agaram | 2015-08-16 | 1 | -31/+31 |
| | | | | | | | | | First step: drop the existing optimization of not redrawing after every character. Gives the editor a jumpy feel. I'm also hoisting the render into handle-keyboard event as a first step to duplicating it everywhere. One test temporarily failing: we're gonna sometimes forget to draw the line below editors. | ||||
* | 2024 - mu environment now handles infinite loops gracefully | Kartik K. Agaram | 2015-08-16 | 1 | -1/+38 |
| | |||||
* | 2015 - ctrl-l: redraw screen | Kartik K. Agaram | 2015-08-15 | 1 | -4/+30 |
| | | | | | I'm starting to optimize screen-drawing. If I get it wrong, this will be a work-around. | ||||
* | 2014 - stop redundant prints on left-click | Kartik K. Agaram | 2015-08-15 | 1 | -6/+103 |
| | |||||
* | 2013 | Kartik K. Agaram | 2015-08-15 | 1 | -5/+6 |
| | |||||
* | 2012 | Kartik K. Agaram | 2015-08-15 | 1 | -2/+2 |
| | |||||
* | 2011 | Kartik K. Agaram | 2015-08-15 | 1 | -9/+0 |
| | | | | | I think this can never trigger because 'cursor-column' can't be greater than 'right'. | ||||
* | 2010 | Kartik K. Agaram | 2015-08-15 | 1 | -2/+2 |
| | |||||
* | 2009 | Kartik K. Agaram | 2015-08-15 | 1 | -3/+3 |
| | |||||
* | 2008 | Kartik K. Agaram | 2015-08-15 | 1 | -7/+7 |
| | |||||
* | 2007 | Kartik K. Agaram | 2015-08-15 | 1 | -24/+24 |
| | | | | | Now that it's time to optimize we're gonna go over our code for externalities. Like in this case: not telling mu about what has changed. | ||||
* | 2006 | Kartik K. Agaram | 2015-08-15 | 1 | -23/+23 |
| | |||||
* | 2004 - indicator for running sandboxes | Kartik K. Agaram | 2015-08-14 | 1 | -8/+28 |
| | |||||
* | 1993 | Kartik K. Agaram | 2015-08-14 | 1 | -0/+45 |
| | | | | Thanks Caleb Couch. | ||||
* | 1992 | Kartik K. Agaram | 2015-08-13 | 1 | -17/+17 |
| | |||||
* | 1982 | Kartik K. Agaram | 2015-08-12 | 1 | -7/+1 |
| | |||||
* | 1981 - clear screen below editors in C | Kartik K. Agaram | 2015-08-12 | 1 | -7/+25 |
| | | | | | Environment much more responsive now. And it doesn't slow down as much just because I'm on a larger screen. | ||||
* | 1980 | Kartik K. Agaram | 2015-08-12 | 1 | -12/+1 |
| | |||||
* | 1979 - bug: couldn't edit sandboxes with prints | Kartik K. Agaram | 2015-08-12 | 1 | -4/+48 |
| | | | | Thanks Jack and Caleb Couch. | ||||
* | 1978 | Kartik K. Agaram | 2015-08-12 | 1 | -1/+1 |
| | |||||
* | 1977 | Kartik K. Agaram | 2015-08-12 | 1 | -3/+2 |
| | |||||
* | 1969 - always hide screen before rendering | Kartik K. Agaram | 2015-08-10 | 1 | -5/+11 |
| | | | | | | | | | | Also ensure we don't render unnecessarily. This is really where I want a formal type-like system to help me. All functions have paired calls to hide-screen and show-screen, except for the one in main. Only functions at the 'topmost' level are expected to hide/show. | ||||
* | 1968 - maximize sides so we can copy-paste from mu | Kartik K. Agaram | 2015-08-10 | 1 | -1/+128 |
| | |||||
* | 1967 | Kartik K. Agaram | 2015-08-10 | 1 | -9/+14 |
| | |||||
* | 1966 | Kartik K. Agaram | 2015-08-10 | 1 | -19/+19 |
| | |||||
* | 1964 - don't mess up paste | Kartik K. Agaram | 2015-08-09 | 1 | -1/+60 |
| | | | | | | | 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 changes | Kartik K. Agaram | 2015-08-09 | 1 | -2/+45 |
| | | | | | This was important because somebody connecting on tmux would mess up the environment. | ||||
* | 1961 | Kartik K. Agaram | 2015-08-09 | 1 | -558/+556 |
| | |||||
* | 1960 - far more careful scroll-line-up | Kartik K. Agaram | 2015-08-09 | 1 | -50/+354 |
| | |||||
* | 1959 - switch page-up to ignore line-wrapping | Kartik K. Agaram | 2015-08-09 | 1 | -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-up | Kartik K. Agaram | 2015-08-08 | 1 | -20/+15 |
| | | | | | The old approach with cached page starts doesn't work when you mix scrolling by line and page. | ||||
* | 1957 - bugfix #2 in scrolling | Kartik K. Agaram | 2015-08-08 | 1 | -7/+57 |
| | | | | | | (#1 was previous commit) Thanks Caleb Couch. | ||||
* | 1956 | Kartik K. Agaram | 2015-08-08 | 1 | -4/+42 |
| | |||||
* | 1955 | Kartik K. Agaram | 2015-08-08 | 1 | -12/+12 |
| | |||||
* | 1954 - ignore junk characters | Kartik K. Agaram | 2015-08-07 | 1 | -0/+5 |
| | |||||
* | 1947 - done with situations needing scroll-up | Kartik K. Agaram | 2015-08-06 | 1 | -2/+54 |
| | |||||
* | 1946 - done with situations needing scroll-down | Kartik K. Agaram | 2015-08-06 | 1 | -7/+108 |
| | |||||
* | 1944 | Kartik K. Agaram | 2015-08-06 | 1 | -4/+38 |
| | | | | | Amazing, now I can change behavior simply by adding a label rather than any code. | ||||
* | 1943 | Kartik K. Agaram | 2015-08-05 | 1 | -1/+119 |
| | |||||
* | 1942 | Kartik K. Agaram | 2015-08-05 | 1 | -11/+90 |
| | |||||
* | 1941 | Kartik K. Agaram | 2015-08-05 | 1 | -1/+73 |
| | |||||
* | 1940 - scroll when moving cursor off-screen | Kartik K. Agaram | 2015-08-05 | 1 | -9/+88 |
| | | | | Uses the new support for nested tangling. | ||||
* | 1937 | Kartik K. Agaram | 2015-08-05 | 1 | -0/+4 |
| | |||||
* | 1936 | Kartik K. Agaram | 2015-08-05 | 1 | -1/+1 |
| | |||||
* | 1935 | Kartik K. Agaram | 2015-08-05 | 1 | -34/+34 |
| | |||||
* | 1934 | Kartik K. Agaram | 2015-08-04 | 1 | -2/+5 |
| | |||||
* | 1933 - bugfix: backspace now works on right side | Kartik K. Agaram | 2015-08-04 | 1 | -2/+33 |
| | |||||
* | 1932 | Kartik K. Agaram | 2015-08-04 | 1 | -0/+63 |
| |