about summary refs log tree commit diff stats
path: root/src/buffer/container.nim
Commit message (Collapse)AuthorAgeFilesLines
* container, pager: work around bad codegenbptato2023-01-021-3/+3
|
* Fix connection load info not being shownbptato2023-01-021-1/+1
|
* loader: proper redirect handlingbptato2023-01-011-5/+3
|
* buffer: fix some search bugs & refactor regex stuffbptato2023-01-011-22/+18
| | | | | | | | 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-7/+7
|
* buffer/container: fix highlighting widthbptato2022-12-281-2/+2
|
* Proper support for tabsbptato2022-12-271-35/+32
|
* container: fix requestLines not setting setxbptato2022-12-251-0/+1
|
* pager: proxy values in container; js: bugfixesbptato2022-12-201-52/+73
| | | | Also, a little bonus: w3m keybindings
* Add unicode normalization, etcbptato2022-12-191-0/+1
|
* Allow cycling through hover-texts with ubptato2022-12-161-5/+29
|
* container: do not load all lines at once in readLinesbptato2022-12-151-7/+17
|
* Fix console display bugs, add container.locationbptato2022-12-151-1/+4
|
* Add discardTree, update docsbptato2022-12-151-2/+2
|
* Make load() slightly less dumbbptato2022-12-151-2/+3
| | | | | This gets rid of the inefficient timeout thing. Still, the ideal solution would be to move the timeout into the container; TODO.
* Add referer support, re-render on windowChangebptato2022-12-131-10/+16
|
* Fix stream error handling confusion, title displaybptato2022-12-131-1/+6
| | | | Also probably other fixes.
* Add more cookie optionsbptato2022-12-131-5/+2
|
* Update config and config docsbptato2022-12-131-2/+5
|
* Add all sorts of config options and cookiesbptato2022-12-131-8/+17
|
* Add urlfilterbptato2022-12-121-1/+1
|
* Fixes & QOL improvementsbptato2022-12-111-1/+1
| | | | | | | | * 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
|
* Optimize sendCursorPosition/updateHover, close streams after loadResourcebptato2022-12-061-10/+9
|
* 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-051-0/+10
|
* 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-011-7/+14
| | | | | For now it's unnecessary; may be re-added later to support some dynamic document features.
* Restore cursor position on reloadbptato2022-11-291-29/+42
|
* Add textareabptato2022-11-281-20/+29
| | | | Editing is implemented using an external editor (like vi).
* Rework broken non-blocking iobptato2022-11-271-31/+49
| | | | | 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-5/+11
|
* Fix some regressions, add loading progress barbptato2022-11-271-75/+63
|
* Also, implement proper asyncbptato2022-11-271-144/+141
| | | | Well, not really proper, but better than nothing? Maybe not.
* Get rid of writeCommand in containerbptato2022-11-261-26/+17
| | | | We have a type system, so let's use it.
* Fix some table layout issuesbptato2022-11-251-28/+7
|
* Improve status messages, fix regressions, etcbptato2022-11-251-16/+39
|
* Buffer improvementsbptato2022-11-251-32/+80
|
* Avoid forking child processes from the main processbptato2022-11-241-48/+32
| | | | Caveat: this breaks piped streams.
* Move ips stuff to src/ips/bptato2022-11-221-1/+1
|
* Color & term improvementsbptato2022-11-211-46/+50
|
* Color stuffbptato2022-11-211-1/+1
|
* Terminal refactoringsbptato2022-11-201-32/+47
|
* Incremental loading of text files, etc.bptato2022-11-201-11/+8
|
* Fix weird screen shift behaviorbptato2022-11-191-15/+23
| | | | (or at least I hope this fixed it)
* Re-implement highlightingbptato2022-11-191-2/+52
|
* Rewrite buffer/pager for multi-processingbptato2022-11-191-0/+626