about summary refs log tree commit diff stats
path: root/src/utils/strwidth.nim
Commit message (Collapse)AuthorAgeFilesLines
* strwidth: return alpha for underscore in vi wordsbptato2024-04-171-1/+1
|
* Update code stylebptato2024-04-171-12/+12
| | | | | | * separate params with ; (semicolon) instead of , (colon) * reduce screaming snake case use * wrap long lines
* strwidth, renderdocument: small refactoringbptato2024-03-031-37/+20
| | | | | | * put attrs pointer in state * simplify width() * use unsigned int as ptint to avoid UB
* Re-design word handling, add e, E, W, B, etc.bptato2024-01-191-11/+19
| | | | | | | | | | | | * Add functions for moving to the beginning/end of words (vi `b', `e'). * As it turns out, there are many possible interpretations of what a word is. Now we have a function for each reasonable interpretation, and the default settings match those of vi (and w3m in w3m.toml). (Exception: it's still broken on line boundaries... TODO) * Remove `bounds` from lineedit, it was horrible API design and mostly useless. In the future, an API similar to what pager now has could be added. * Update docs, and fix some spacing issues with symbols in the tables.
* charwidth: use pre-generated map filebptato2024-01-041-136/+2
| | | | Also for reducing compilation time.
* strwidth & url fixesbptato2023-12-161-1/+1
| | | | | | * actually search Combining for isCombining * fix searchInMap * fix cmpRange of url
* charcategory: move out isDigitAsciibptato2023-12-141-0/+3
| | | | so we do not have to import unicode
* break up twtstr somewhatbptato2023-12-131-0/+246
Avoid computing e.g. charwidth data for http which does not need it at all.