aboutsummaryrefslogtreecommitdiff
path: root/builtins/text.c
AgeCommit message (Expand)Author
2024-09-11Rename closure_t -> Closure_t for consistencyBruce Hill
2024-09-09Add Text.starts_with() and Text.ends_with()Bruce Hill
2024-09-09Add Text$compare_values()Bruce Hill
2024-09-09Bugfix for $/{..}/ matching zero-width at the end of textBruce Hill
2024-09-09Print paths as the literals lookBruce Hill
2024-09-08Fix nearly every GCC warning and add __attribute__((pure/const)) whereBruce Hill
2024-09-07$/{!..}/ is the same as $/{end}/Bruce Hill
2024-09-07Fix captures for {..} optimizationBruce Hill
2024-09-07Optimization to terminate pattern searches early if there's a greedyBruce Hill
2024-09-07Optimize text matchingBruce Hill
2024-09-07Bugfix uninitialized variablesBruce Hill
2024-09-06Make {start} and {end} non-capturingBruce Hill
2024-09-06Fix some C string and path resolving issuesBruce Hill
2024-09-06Minor cleanupBruce Hill
2024-09-06Misc fixesBruce Hill
2024-09-06Text overhaulBruce Hill
2024-09-06Add Text.trim()Bruce Hill
2024-09-05Some const stuffBruce Hill
2024-09-05Fully clean up siphash code and fix some issuesBruce Hill
2024-09-05Replace $Type with Type$info for builtin TypeInfosBruce Hill
2024-09-05Rename table_t -> Table_tBruce Hill
2024-09-05Rename array_t -> Array_tBruce Hill
2024-09-05Do the extremely obvious optimization of checking if two pieces of dataBruce Hill
2024-09-05Clear out some CRLF crufttext2Bruce Hill
2024-09-05Fix stability of concatenationBruce Hill
2024-09-05Be extra correct about prefix codepointsBruce Hill
2024-09-05Clean up some importsBruce Hill
2024-09-05Dynamically grow synthetic grapheme arrayBruce Hill
2024-09-05Fix up handling of synthetic graphemes, also document how they workBruce Hill
2024-09-04Add Text:repeat()Bruce Hill
2024-09-04Add Text.map(pat, fn)Bruce Hill
2024-09-04Remove readline dependencyBruce Hill
2024-09-04Add nl/newline/clrf patternBruce Hill
2024-09-04Add method for getting a length-based string as TextBruce Hill
2024-09-04Add Text:matches() for convenience and performanceBruce Hill
2024-09-03Don't bold DSL textBruce Hill
2024-09-03Add recursive mode to text replacement and update docsBruce Hill
2024-09-03Clean up text replacement API to use backrefs instead of match_chain()Bruce Hill
2024-09-03Add commentsBruce Hill
2024-09-03Bugfix for "?"Bruce Hill
2024-09-03Add Text.replace_all({Pattern:Text}) and tweak API for replacement toBruce Hill
2024-09-03Bugfix for $/{..}/Bruce Hill
2024-09-03Use Text("...") literal constructor instead of Text$from_str("...")Bruce Hill
2024-09-03Escape question marks in patternsBruce Hill
2024-09-03Change pattern syntax from [..pat] to {pat}Bruce Hill
2024-09-03Syntax overhaul (comments back to `#`, print statments to `!!`),Bruce Hill
2024-09-03Better behavior for invalid character namesBruce Hill
2024-09-03Fix codepoint names by falling back to block namesBruce Hill
2024-09-03Fix for missing codepoint namesBruce Hill
2024-09-03Add [..int] and [..num]Bruce Hill