aboutsummaryrefslogtreecommitdiff
path: root/src/environment.c
AgeCommit message (Collapse)Author
7 daysFixes for Path.with_extension()devBruce Hill
9 daysBugfixBruce Hill
9 daysCode cleanupBruce Hill
2026-02-08Added Text.distance(a,b) for text similarity comparisons.Bruce Hill
2026-01-25Bugfix for Text->Path conversionBruce Hill
2025-12-31Changed is_between() to be bidirectionalBruce Hill
2025-12-28Change autoformatter to no longer allow single-line functionsBruce Hill
2025-12-22Add Path.writer() and Path.byte_writer()Bruce Hill
2025-12-07More correct handling for sleep()Bruce Hill
2025-12-07Switch paths to use Result return values instead of fail()Bruce Hill
2025-12-07Change Paths to be an enum of their different types.Bruce Hill
2025-12-07Rename `Empty()` -> `Present()` for set-like tablesBruce Hill
2025-11-30Add `base` parameter to integer parsing functionsBruce Hill
2025-11-27Update `setenv()` to take an optional value, also bugfix for `setenv()`Bruce Hill
returning a value.
2025-11-27Add `recursive` arg to Path.create_directory()Bruce Hill
2025-11-24Fix `from_num` incomplete renamingBruce Hill
2025-11-23Add `at_cleanup()` functionBruce Hill
2025-11-23Added Text.find(text, target, start=1)Bruce Hill
2025-11-15Add Path.lines()Bruce Hill
2025-10-18Improved CLI parsing and add CString.join()Bruce Hill
2025-10-11Make `{a,b,c}` shorthand for `{a:Empty(), b:Empty(), c:Empty()}` andBruce Hill
display it that way. Same for type annotations.
2025-10-11Rename pathtype enum valuesBruce Hill
2025-10-11Bugfix for optional paths and converting path type into an actual enumBruce Hill
instead of a struct wrapped around an enum
2025-10-11Added Empty() structBruce Hill
2025-10-01Convert to using more zero values for `none`Bruce Hill
2025-09-22Fix: support method calls on optional typesBruce Hill
2025-09-21Use colons instead of '=' for tables (e.g. {1: 2})Bruce Hill
2025-09-21Fix testsBruce Hill
2025-09-21Deprecate setsBruce Hill
2025-09-21Bugfixes for anonymous enums, code cleanup to remove type_to_string(),Bruce Hill
and changed it so anonymous enums show up in doctests with their full type instead of `enum$20`
2025-09-09Overhaul to the unicode encoding/decoding methods for textBruce Hill
2025-09-06Code cleanupBruce Hill
2025-08-25Update file header commentsBruce Hill
2025-08-25Further split out files for parsingBruce Hill
2025-08-25More docs and moving parsing into a subfolder.Bruce Hill
2025-08-24Remove vim modelinesBruce Hill
2025-08-24Constructors and functions with underscore arguments should be allowed to be ↵Bruce Hill
called, but only if the underscore arguments are not provided but are implicit from the default values. Same for constructing structs with private fields.
2025-08-23Fix readability and don't align trailing commentsBruce Hill
2025-08-23Autoformat everything with clang-formatBruce Hill
2025-08-23Remove some unused importsBruce Hill
2025-08-17Bugfix: added support for Tomo identifiers that are C keywordsBruce Hill
2025-08-16Improved parsing and prefix/suffix matching using a `remainder`Bruce Hill
parameter
2025-08-10Add full protection against accessing fields and methods that start withBruce Hill
underscores outside of the scope where the type is defined.
2025-08-09Deprecate cords from the gc library in favor of dogfooding Text from theBruce Hill
Tomo standard library.
2025-07-10Add text compression optimizations for unicode textBruce Hill
2025-06-26Add get_bit() method for Ints and BytesBruce Hill
2025-06-24Add Path.has_extension() and update manpages/api docsBruce Hill
2025-05-25Code cleanupBruce Hill
2025-05-20Add more advanced configuration options to modules.ini and supportBruce Hill
automatically downloading and installing from it.
2025-05-17Add `modules.ini` file for import aliases, as well as default aliasesBruce Hill
for the built-in modules.