Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-07-14 | lexlua: Minor pattern refactoring. | mitchell | 1 | -2/+2 | |
2020-07-08 | lexlua: Convert uses of `lexer.STYLE_*` to `lexer.styles.*`. | mitchell | 1 | -3/+3 | |
2020-07-07 | lexlua: Added `lexer.colors` and `lexer.styles` tables for themes and lexers. | mitchell | 1 | -9/+10 | |
This allows for a more Lua table-oriented approach to defining and using colors and styles, instead of manually manipulating Scintilla property strings. Themes and lexers are still backwards compatible, as the underlying mechanisms are still in place. | |||||
2020-06-25 | lexlua: Updated Markdown lexer to handle code blocks and spans better. | mitchell | 1 | -7/+15 | |
Thanks to Alexander Misel. | |||||
2020-04-25 | Reformatted Lua LPeg lexers and added new convenience functions and pattern. | mitchell | 1 | -76/+55 | |
`lexer.range()` replaces `lexer.delimited_range()` and `lexer.nested_pair()`. `lexer.to_eol()` replaces `patt * lexer.nonnewline^0` constructs. `lexer.number` replaces `lexer.float + lexer.integer`. Also added unit tests for lexer functions. | |||||
2019-12-31 | Updated copyright year for lexlua-specific bits of LongTerm3. | mitchell | 1 | -1/+1 | |
2019-06-02 | lexlua: Updated Markdown lexer. | mitchell | 1 | -6/+24 | |
Thanks to Alexander Misel. | |||||
2019-02-16 | Updated copyright year. | mitchell | 1 | -1/+1 | |
2018-10-24 | lexlua: Updated Markdown lexer. | mitchell | 1 | -8/+13 | |
Thanks to Alexander Misel. | |||||
2018-10-07 | lexlua: Handle CR+LF in horizontal rules for Markdown. | mitchell | 1 | -2/+2 | |
2018-06-16 | Fixed incorrect highlighting of indented markdown lists. | mitchell | 1 | -5/+5 | |
They were being identified as blockcode. | |||||
2018-03-11 | Added optional Lua lexer support. | mitchell | 1 | -0/+102 | |
This support is disabled by default and must be enabled via compile-time option. |