aboutsummaryrefslogtreecommitdiff
path: root/core/text
Commit message (Collapse)AuthorAgeFilesLines
* Replace `core:*` to `base:*` where appropriategingerBill2024-01-283-3/+3
|
* check to see if s.builder is nilMichael Kutowski2023-11-231-1/+1
|
* forgot to use the old package nameMichael Kutowski2023-11-231-1/+1
|
* Add setup_once and clear_all, tidy up old code and add a few commentsMichael Kutowski2023-11-221-30/+76
|
* Remove default valuegingerBill2023-09-301-1/+1
|
* Minor cleanups to the core librarygingerBill2023-09-301-9/+8
|
* Use `or_break` and `or_continue` where appropriate in the core librarygingerBill2023-09-302-15/+5
|
* Disallow `for in` in favour of `for _ in`gingerBill2023-08-081-2/+2
|
* Fix #2684Jeroen van Rijn2023-07-282-8/+36
|
* Replace `x in &y` Use `&v in y` syntax through core & vendor for ↵gingerBill2023-06-261-2/+2
| | | | `switch`/`for` statements
* Use positional and named arguments within the core librarygingerBill2023-06-211-1/+1
|
* Add missing packages to `examples/all`gingerBill2023-06-072-4/+3
|
* Add more text packages to `examples/all`gingerBill2023-06-071-3/+4
|
* Fix check for continuation byte in core/text/text_editClay Murray2023-05-021-2/+2
|
* Fix typos in docoskarnp2023-03-271-3/+3
|
* Fix typooskarnp2023-03-261-3/+3
|
* Rename init procsoskarnp2023-03-261-6/+6
|
* Remove unnecessary #partial switchoskarnp2023-03-261-2/+2
|
* Remove unnecessary C style looposkarnp2023-03-261-1/+1
|
* Fix cell alignment to default to Left using ZIIoskarnp2023-03-261-8/+1
|
* Move helper procs into utility.odinoskarnp2023-03-262-8/+13
|
* text/table: Initial implementationoskarnp2023-03-262-0/+499
|
* refactor SPECIALS_TABLEskytrias2022-12-211-3/+13
|
* package name changedskytrias2022-12-211-1/+1
|
* folder name changedskytrias2022-12-211-0/+0
|
* fix styling issues and use switches in cases its necessary, add comments to ↵skytrias2022-12-201-281/+190
| | | | helpers
* add iter_index and update tests to use easier matcher setupskytrias2022-12-201-1/+8
|
* try helper procedures / structsskytrias2022-12-181-1/+133
|
* small fixes and oob checks, stop infinite loops on empty matchesskytrias2022-12-181-4/+15
|
* case insensitive helper callskytrias2022-12-181-3/+53
|
* add proper unicode walkingskytrias2022-12-181-119/+206
|
* balanced string, frontier pattern, gsub_with and their tests addedskytrias2022-12-181-64/+92
|
* create lua strlib text package and testsskytrias2022-12-181-0/+725
|
* Add `core:text/edit`gingerBill2022-11-041-0/+413
|
* Fix +build ignoregingerBill2022-11-041-1/+1
|
* Fix `i18n`gingerBill2022-08-082-7/+7
|
* Convert all uses of `*_from_slice` to `*_from_bytes` where appropriategingerBill2022-05-162-6/+6
|
* [i18n] Enable *nix tests again.Jeroen van Rijn2022-04-291-9/+9
|
* [i18n] Fix segfault on destroy on LinuxJeroen van Rijn2022-04-292-11/+18
| | | | Forgot to intern the section string in QT TS loader.
* [i18n] Add tests.Jeroen van Rijn2022-04-295-106/+129
|
* [i18n/xml] Move I18N XML files to their own assets directory.Jeroen van Rijn2022-04-293-63/+0
|
* [i18n] Move to `core:text/i18n`.Jeroen van Rijn2022-04-297-0/+649
|
* Strip even more semicolons if followed by a `}` or `)` on the same linegingerBill2021-08-311-3/+3
|
* Remove unneeded semicolons from the core librarygingerBill2021-08-311-248/+248
|
* More minor stylization changes (remove unneeded parentheses)gingerBill2021-06-141-1/+1
|
* Core library clean up: Make range expressions more consistent and replace ↵gingerBill2021-06-141-6/+6
| | | | uses of `..` with `..=`
* Improve text/scanner whitespace parameter to use a bit_set instead; Improve ↵gingerBill2020-12-151-5/+8
| | | | error message for `for x in y` where y is not iterable but allows `in` as an operator
* Add docs to text/scannergingerBill2020-12-071-3/+51
|
* Unify `peek_n` with `peek` and rename`scan_peek_n` to `peek_token`gingerBill2020-12-071-16/+10
|
* Add scan_peek_n to package text/scanner #800gingerBill2020-12-071-0/+10
|