about summary refs log tree commit diff stats
path: root/main.lua
Commit message (Collapse)AuthorAgeFilesLines
...
* fix a corner case when selecting textKartik K. Agaram2022-06-091-9/+21
| | | | | The hard part here is keeping click-drag selection working (without pressing and holding shift).
* .Kartik K. Agaram2022-06-091-4/+2
|
* experiment: blinking cursorKartik K. Agaram2022-06-091-0/+4
| | | | | | | | | I've tried to keep the time period of the blinking similar to my terminal. Honestly I'm no longer sure if any of my experiments are showing a statistically significant result. Let's see how it feels over a period of time.
* experiment: turn off JITKartik K. Agaram2022-06-091-0/+5
| | | | This seems to speed up copy! What does it slow down?
* more defensive resize handlingKartik K. Agaram2022-06-071-2/+23
| | | | Thanks John Blommers for the report!
* first commandline arg: window dimensionsKartik K. Agaram2022-06-071-8/+33
| | | | Hopefully there won't be too many others.
* use app name in window titleKartik K. Agaram2022-06-071-1/+1
|
* warn on unused commandline argsKartik K. Agaram2022-06-071-0/+4
|
* obsolete commentKartik K. Agaram2022-06-071-1/+0
|
* extract a functionKartik K. Agaram2022-06-071-11/+14
|
* allow the window to be resizedKartik K. Agaram2022-06-071-2/+13
| | | | | | This still isn't ideal. On my Linux laptop for some reason the window receives a signal to maximize itself soon after (but sometime after) the program starts.
* autosave on cut/pasteKartik K. Agaram2022-06-051-0/+2
|
* .Kartik K. Agaram2022-06-051-1/+1
|
* another bugfix in scrolling while inserting textKartik K. Agaram2022-06-051-0/+1
| | | | | | I'm being unprincipled at the moment between pos and x,y coordinates. Whatever is more convenient. Perhaps a cleaner approach will come to me over time.
* renameKartik K. Agaram2022-06-051-2/+2
|
* some unnecessary mutationsKartik K. Agaram2022-06-051-4/+0
| | | | | Why are we not modifying Screen_top1.pos in these places? Because we don't really need to modify Screen_top1 at all.
* regression: couldn't do many drawing operations because line.y was resetKartik K. Agaram2022-06-041-1/+7
|
* try to maintain a reasonable line widthKartik K. Agaram2022-06-041-15/+15
|
* .Kartik K. Agaram2022-06-041-4/+0
|
* select text with shift + mouseclickKartik K. Agaram2022-06-041-2/+8
| | | | | | | It's still a bit simple-minded. Most software will keep the first bound fixed and move the second. Lines currently has the bounds in a queue of sorts. But I have a test to indicate the behavior that is definitely desired. We'll see if we need it to get more complex.
* bugfix: restore state after C-f (find)Kartik K. Agaram2022-06-031-4/+6
|
* highlight selection while draggingKartik K. Agaram2022-06-031-5/+7
| | | | | | | Mouse stuff is pretty strenuous. For the first time I have to be careful not to recompute too often. And I ran into a race condition for the first time where resetting line.y within App.draw meant mouse clicks were extremely unlikely to see line.y set.
* select text using mouse dragKartik K. Agaram2022-06-031-10/+15
| | | | Doesn't yet highlight while dragging.
* renameKartik K. Agaram2022-06-031-2/+2
|
* up arrow to search previousKartik K. Agaram2022-06-031-0/+2
|
* switch copy/paste to ctrl- hotkeysKartik K. Agaram2022-06-021-0/+48
|
* switch undo/redo to ctrl- hotkeysKartik K. Agaram2022-06-021-0/+18
|
* default font size and line-heightKartik K. Agaram2022-06-021-4/+10
|
* extract a new variableKartik K. Agaram2022-06-021-1/+2
|
* crisp font renderingKartik K. Agaram2022-06-021-4/+20
|
* find textKartik K. Agaram2022-06-021-5/+43
|
* .Kartik K. Agaram2022-06-021-1/+1
|
* renameKartik K. Agaram2022-06-021-1/+1
|
* bugfix: undo drawing creationKartik K. Agaram2022-06-021-0/+1
| | | | | Also clean up drawing state to make sure we don't get into hard-to-debug situations.
* after much struggle, a brute-force undoKartik K. Agaram2022-06-021-0/+5
| | | | | | | | | Incredibly inefficient, but I don't yet know how to efficiently encode undo mutations that can span multiple lines. There seems to be one bug related to creating new drawings; they're not spawning events and undoing past drawing creation has some weird artifacts. Redo seems to consistently work, though.
* .Kartik K. Agaram2022-05-291-6/+0
|
* selecting text and deleting selectionsKartik K. Agaram2022-05-291-0/+11
| | | | | | I've written a few tests for delete_selection, but the way different operations initialize the selection seems fairly standard and not worth testing so far.
* update some documentationKartik K. Agaram2022-05-291-3/+6
|
* move some codeKartik K. Agaram2022-05-281-28/+0
| | | | | I had this idea originally to keep text.lua oblivious to drawings. But that hasn't been true for some time. Losing battle.
* .Kartik K. Agaram2022-05-271-1/+1
|
* assert for a bug I saw a while ago but can no longer reproduceKartik K. Agaram2022-05-251-0/+1
| | | | | I saw screen_top not at start of screen line, but at cursor location in middle of line.
* no, make sure to compute line width after screen dimensionsKartik K. Agaram2022-05-251-4/+4
|
* couple more testsKartik K. Agaram2022-05-251-17/+19
| | | | Along with the App helpers needed for them.
* get rid of debug variablesKartik K. Agaram2022-05-231-9/+4
|
* keep one screen line of overlap on pagedownKartik K. Agaram2022-05-231-1/+1
| | | | | | | | | | | | | | | | | | | | I'm now extracting the concern of computing line.screen_line_starting_pos out of Text.draw. Earlier I had to make sure I ran through the whole line to compute screen_line_starting_pos, but that had the side-effect of updating Screen_bottom1.pos as well with lines that had never been rendered. In this process I hit my first bug due to an accidental global. It doesn't show up in the patch because I accidentally deleted a local declaration. (I thought I didn't need screen_line_starting_pos anymore, deleted everywhere, then brought it back everywhere from the bottom of the function up, but forgot to put back the very first occurrence.) The amount of yoyoing this caused between App.draw and Text.draw, I very much have spaghetti on my hands. Accidental globals are _terrible_ in a program with tests. Cross test contamination X-(
* a few tests for pageup, and a bugfixKartik K. Agaram2022-05-231-10/+18
| | | | It wasn't screen-line aware. Now it is.
* disable all debug printsKartik K. Agaram2022-05-231-2/+2
|
* .Kartik K. Agaram2022-05-231-1/+2
|
* couple of tests for cursor downKartik K. Agaram2022-05-231-2/+2
|
* bugfix: don't rely on Screen_bottom1 while scrollingKartik K. Agaram2022-05-231-1/+4
| | | | | Setting up the test just right to test the thing I want to test was a rube goldberg machine of constants.