about summary refs log tree commit diff stats
path: root/README.md
Commit message (Collapse)AuthorAgeFilesLines
* add a mirror and reorg mirrorsKartik K. Agaram2024-03-101-3/+4
|
* Revert "deemphasize the source editor"Kartik K. Agaram2023-09-101-0/+1
| | | | | | | Now that we have decent error handling, I think we can encourage people to press ctrl+e again. This reverts commit 4b43e9e85d985bcedd105fa9693ae751e5b6d0b6.
* experiment: convert to PijulKartik K. Agaram2023-06-251-0/+1
| | | | https://pijul.org
* delete inapplicable issueKartik K. Agaram2023-04-211-4/+0
|
* correct a characterizationKartik K. Agaram2023-04-211-2/+2
|
* deemphasize the source editorKartik K. Agaram2023-04-091-1/+0
| | | | | | | | | This repo does not support freewheeling modification. It's a primitive to enable freewheeling modification in downstream forks. The source editor is a convenience, but it's a sharp tool and can easily leave the app in a broken state that requires dropping down to external tools (editor, file manager) to fix.
* update stale informationKartik K. Agaram2023-03-251-2/+2
|
* mention a new toolKartik K. Agaram2023-03-211-0/+2
|
* remove a stale issueKartik K. Agaram2023-03-171-2/+0
|
* include instructions to install LÖVEKartik K. Agaram2023-01-241-1/+5
|
* demote codeberg.org in the list of mirrorsKartik K. Agaram2023-01-231-2/+2
| | | | It's been slow to push to lately, so I'm going to update it less frequently.
* ctrl+a: select entire bufferKartik K. Agaram2022-11-191-0/+1
|
* one issue lessKartik K. Agaram2022-09-061-3/+1
| | | | | Selecting text is also almost done. I just need to figure out what to do with bifold text.
* editing source code from within the appKartik K. Agaram2022-09-031-0/+5
| | | | | integrated from pong.love via text.love: https://merveilles.town/@akkartik/108933336531898243
* include pensieve.love even though it's in developmentKartik K. Agaram2022-08-221-0/+5
|
* include a forkKartik K. Agaram2022-08-211-0/+2
|
* new mirrorKartik K. Agaram2022-08-141-0/+1
|
* more cogent onboarding instructionsKartik K. Agaram2022-08-141-4/+7
| | | | Someone looking at the repo will probably prefer the terminal.
* click to the left of a lineKartik K. Agaram2022-07-291-0/+4
|
* affirm a priorityKartik K. Agaram2022-07-081-0/+2
|
* link to export toolKartik K. Agaram2022-07-021-0/+5
|
* deemphasize the terminal in ReadmeKartik K. Agaram2022-07-011-22/+4
|
* drop stale flag from documentationKartik K. Agaram2022-07-011-10/+0
|
* clarify what "large files" meansKartik K. Agaram2022-06-291-1/+2
|
* clean upKartik K. Agaram2022-06-171-3/+0
|
* better handle moving pointsKartik K. Agaram2022-06-171-15/+0
| | | | | This should hopefully address #5. I'm removing some constraints from manhattan lines, rectangles and squares.
* document one more shortcutKartik K. Agaram2022-06-171-0/+1
|
* tweak to ReadmeKartik K. Agaram2022-06-151-2/+2
|
* new fork for #1Kartik K. Agaram2022-06-151-0/+4
|
* .Kartik K. Agaram2022-06-111-1/+1
|
* things seem to feel snappier nowKartik K. Agaram2022-06-101-6/+2
| | | | | However, I think a lot of the benefit comes from just turning JIT off. Turning it on is still noticably sluggish.
* slight reorg in ReadmeKartik K. Agaram2022-06-101-2/+4
|
* faster pasteKartik K. Agaram2022-06-101-4/+4
| | | | | We don't need to perform the scroll calculations after inserting every single character from the clipboard.
* fix contact linkKartik K. Agaram2022-06-091-1/+1
|
* forgot to commit documentation for the commandline argKartik K. Agaram2022-06-071-0/+10
|
* clearer discription of how to run lines.loveKartik K. Agaram2022-06-071-5/+22
|
* a likely source of issuesKartik K. Agaram2022-06-071-0/+4
|
* freudian typoKartik K. Agaram2022-06-071-1/+1
|
* flesh out ReadmeKartik K. Agaram2022-06-061-0/+49
|
* another known issueKartik K. Agaram2022-06-061-4/+4
|
* record another known issue I don't know how to fix yetKartik K. Agaram2022-06-051-0/+5
| | | | | | | Perhaps I need to switch to the next more sophisticated data structure for Lines: a gap buffer around the line the cursor is on. I'm not sure why it would help here, though.
* one more known issueKartik K. Agaram2022-06-031-0/+3
|
* taking stockKartik K. Agaram2022-06-031-0/+4
| | | | | | | | couple of more temporary bugs: find sometimes draws highlighted text in wrong place esc after C-f sometimes ends up with cursor before screen top But the known issues are harder.
* more efficient undo/redoKartik K. Agaram2022-06-021-3/+2
| | | | | Now the bottleneck shifts to applying undo/redo in large files. But things should be snappy if you don't use the sluggish feature.
* after much struggle, a brute-force undoKartik K. Agaram2022-06-021-0/+4
| | | | | | | | | 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.
* ReadmeKartik K. Agaram2022-05-291-4/+9
|
* support for naming pointsKartik K. Agaram2022-05-211-0/+3
| | | | There's still an absence of affordance showing when you're in naming mode.
* new known issue with drawingsKartik K. Agaram2022-05-211-0/+19
|
* planning out cursor up/down over wrapped linesKartik K. Agaram2022-05-191-3/+3
|
* bugfix: ensure Cursor_line is always on a text lineKartik K. Agaram2022-05-181-0/+8
| | | | | | | | | | | | | | | | | | | | Manual test used here: abc ```lines {"p1":{"y":72,"x":82},"mode":"line","p2":{"y":29,"x":169}} ``` def ```lines {"p1":{"y":36,"x":56},"mode":"line","p2":{"y":59,"x":163}} ``` ```lines ``` ghi jkl Hitting page-down moves the cursor from abc to ghi. The 'ghi' line should be fully visible on screen.