| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | fix: enable building on 32-bit platformsHEADmaster | 2025-12-04 | 1 | -1/+1 | |
| | | | | | | Without this change, we get the following error when targeting 32bit platforms (e.g. arm-linux): "@fieldParentPtr increases pointer alignment". | ||||
| * | Update to Zig 0.15.0-dev.1147 | 2025-07-21 | 1 | -32/+36 | |
| | | |||||
| * | refactor: Always access using full namespace | 2024-10-22 | 1 | -4/+3 | |
| | | | | | This is my new preferred style of programming Zig :) | ||||
| * | count codepoints instead of bytes, to determine width | 2024-08-30 | 1 | -0/+102 | |
| A complete solution would be to count grapheme clusters, but that would require adding a dependency on something like zg. Counting codepoints will ensure that typical non-ASCII text is supported, but you can still throw it off with more complex Unicode constructions, which might not be so useful in help text. Fixes #75 | |||||