about summary refs log tree commit diff stats
path: root/src/buffer
Commit message (Collapse)AuthorAgeFilesLines
* Fixes & QOL improvementsbptato2022-12-112-23/+19
| | | | | | | | * fix infinite loop after closing buffer * fix setx not triggering hover updates * fix D not going back to PREV but to parent * add M-d, M-,, M-., M-/ for old D behavior, cycle through siblings, back to parent
* Fix -dbptato2022-12-101-12/+9
|
* Fix blocking socketstream recv/send, clean up ips/serialize & types/colorbptato2022-12-101-4/+4
| | | | Write always blocks for now, as it's too big of a footgun not to
* Add support for the encoding standard, fix parseLegacyColorbptato2022-12-101-36/+34
| | | | Also, fix a bug in the
* Optimize sendCursorPosition/updateHover, close streams after loadResourcebptato2022-12-062-19/+21
|
* Trigger status event when number of lines changedbptato2022-12-051-5/+7
| | | | (So that line information is updated automatically)
* Add title tag support, peek, peekCursorbptato2022-12-052-1/+32
|
* Make redraw() actually clear the screenbptato2022-12-011-1/+3
| | | | It's more useful this way.
* Fix some screen update issues, remove redraw timerbptato2022-12-012-24/+34
| | | | | For now it's unnecessary; may be re-added later to support some dynamic document features.
* Restore cursor position on reloadbptato2022-11-292-30/+43
|
* Add textareabptato2022-11-282-58/+89
| | | | Editing is implemented using an external editor (like vi).
* Add support for <button>bptato2022-11-271-11/+13
|
* Rework broken non-blocking iobptato2022-11-272-62/+135
| | | | | Piped input works correctly again! (Also fix hash's setter not working with url's without a fragment)
* Fix adoption agency algorithm bugsbptato2022-11-272-8/+11
|
* Fix some regressions, add loading progress barbptato2022-11-273-188/+195
|
* Also, implement proper asyncbptato2022-11-272-267/+376
| | | | Well, not really proper, but better than nothing? Maybe not.
* Get rid of writeCommand in containerbptato2022-11-262-203/+245
| | | | We have a type system, so let's use it.
* Fix some table layout issuesbptato2022-11-251-28/+7
|
* Fix misc bugsbptato2022-11-251-2/+4
|
* Improve status messages, fix regressions, etcbptato2022-11-252-35/+72
|
* Buffer improvementsbptato2022-11-252-39/+106
|
* Avoid forking child processes from the main processbptato2022-11-242-77/+53
| | | | Caveat: this breaks piped streams.
* Table improvementsbptato2022-11-221-0/+1
|
* Move ips stuff to src/ips/bptato2022-11-222-4/+4
|
* Color & term improvementsbptato2022-11-211-46/+50
|
* Color stuffbptato2022-11-211-1/+1
|
* Terminal refactoringsbptato2022-11-203-107/+73
|
* Incremental loading of text files, etc.bptato2022-11-202-130/+182
|
* Fix weird screen shift behaviorbptato2022-11-191-15/+23
| | | | (or at least I hope this fixed it)
* Re-implement highlightingbptato2022-11-192-4/+54
|
* Rewrite buffer/pager for multi-processingbptato2022-11-193-0/+1781