about summary refs log tree commit diff stats
path: root/src/buffer/buffer.nim
Commit message (Collapse)AuthorAgeFilesLines
* buffer: fix infinite loop in getClickablebptato2023-01-031-2/+3
|
* buffer: fix infinite loopbptato2023-01-031-1/+2
|
* dom: add better attribute reflectionbptato2023-01-021-2/+3
| | | | | Instead of creating a new function for each attribute, use a single magic function for reflected attributes.
* Add support for <label>bptato2023-01-021-93/+111
|
* loader: proper redirect handlingbptato2023-01-011-1/+1
|
* buffer: fix some search bugs & refactor regex stuffbptato2023-01-011-28/+26
| | | | | | | | cursorBytes uses twidth now. cursorNextMatch matches the byte *after* the cursor (somewhat more consistently than before). match() no longer counts capture groups. LRE_FLAG_GLOBAL now goes through the entire string.
* Add promise support to JSbptato2022-12-311-79/+40
|
* Consistent naming of parseURL, non-public newURLParamsbptato2022-12-261-4/+4
|
* More DOM workbptato2022-12-191-9/+1
|
* Add JS support to documentsbptato2022-12-181-15/+21
|
* Allow cycling through hover-texts with ubptato2022-12-161-23/+30
|
* container: do not load all lines at once in readLinesbptato2022-12-151-3/+9
|
* makeCRLF: move to twtstr, write last charbptato2022-12-151-16/+0
|
* Fix error handling on buffer closebptato2022-12-151-14/+18
|
* Make load() slightly less dumbbptato2022-12-151-51/+98
| | | | | This gets rid of the inefficient timeout thing. Still, the ideal solution would be to move the timeout into the container; TODO.
* cssparser: check for EOF in first read chunkbptato2022-12-141-2/+2
| | | | To-do: use decoderstream...
* Add referer support, re-render on windowChangebptato2022-12-131-1/+21
|
* Fix stream error handling confusion, title displaybptato2022-12-131-9/+16
| | | | Also probably other fixes.
* Add all sorts of config options and cookiesbptato2022-12-131-1/+7
|
* Fixes & QOL improvementsbptato2022-12-111-22/+18
| | | | | | | | * 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
* 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-061-9/+12
|
* Add title tag support, peek, peekCursorbptato2022-12-051-1/+22
|
* Fix some screen update issues, remove redraw timerbptato2022-12-011-17/+20
| | | | | For now it's unnecessary; may be re-added later to support some dynamic document features.
* Restore cursor position on reloadbptato2022-11-291-1/+1
|
* Add textareabptato2022-11-281-38/+60
| | | | Editing is implemented using an external editor (like vi).
* Add support for <button>bptato2022-11-271-11/+13
|
* Rework broken non-blocking iobptato2022-11-271-31/+86
| | | | | Piped input works correctly again! (Also fix hash's setter not working with url's without a fragment)
* Fix adoption agency algorithm bugsbptato2022-11-271-3/+0
|
* Fix some regressions, add loading progress barbptato2022-11-271-113/+88
|
* Also, implement proper asyncbptato2022-11-271-123/+235
| | | | Well, not really proper, but better than nothing? Maybe not.
* Get rid of writeCommand in containerbptato2022-11-261-177/+228
| | | | We have a type system, so let's use it.
* Fix misc bugsbptato2022-11-251-2/+4
|
* Improve status messages, fix regressions, etcbptato2022-11-251-19/+33
|
* Buffer improvementsbptato2022-11-251-7/+26
|
* Avoid forking child processes from the main processbptato2022-11-241-29/+21
| | | | Caveat: this breaks piped streams.
* Table improvementsbptato2022-11-221-0/+1
|
* Move ips stuff to src/ips/bptato2022-11-221-3/+3
|
* Terminal refactoringsbptato2022-11-201-38/+10
|
* Incremental loading of text files, etc.bptato2022-11-201-119/+174
|
* Re-implement highlightingbptato2022-11-191-2/+2
|
* Rewrite buffer/pager for multi-processingbptato2022-11-191-0/+834