summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | Update CHANGES.Matthäus G. Chajdas2021-12-301-0/+5
| |
* | Update Spice lexer (#2009)Marc Auberer2021-12-303-16/+86
| |
* | CFamily: improve function detection (#2008)amitkummer2021-12-303-2/+30
| | | | | | | | Detect function with return types of more than a single word length (like `unsigned int` or `long long`).
* | Prepare for next release.Matthäus G. Chajdas2021-12-301-0/+4
| |
* | Remove egg-info section from setup.cfg.2.11.0Matthäus G. Chajdas2021-12-301-4/+0
| |
* | Bump version number.Matthäus G. Chajdas2021-12-301-1/+1
| |
* | Update release-checklist.Matthäus G. Chajdas2021-12-301-1/+1
| | | | | | | | Use -m build instead of setup.py.
* | Update CHANGES.Matthäus G. Chajdas2021-12-301-9/+11
| |
* | GSQL lexer syntax changes (#2006)Gregory Grubbs2021-12-303-34/+262
| | | | | | | | | | | | | | | | | | * Add square, angle and single underscore to punct; simplify string regex * Add dollar as operator in LOAD DDL; add pipe as op for resused edge names * Add to test file to test recent lexer fixes * Added PR# to new test cases
* | Update CHANGES.Matthäus G. Chajdas2021-12-291-1/+1
| |
* | Update CHANGES.Matthäus G. Chajdas2021-12-291-1/+1
| |
* | Merge branch 'blu-base-lexers_gh'Matthäus G. Chajdas2021-12-2956-14569/+14312
|\ \
| * | Use words in Cypher lexer.Matthäus G. Chajdas2021-12-291-6/+7
| | |
| * | Merge branch 'master' of github.com:pygments/pygments; branch 'lexers_gh' of ↵Matthäus G. Chajdas2021-12-2956-14567/+14309
| |\ \ |/ / / | | | | | | https://github.com/blu-base/pygments into blu-base-lexers_gh
| * | Modernize Whitespace token in lexer: hexdumpSebastian Engel2021-12-035-6/+6
| | |
| * | Modernize Whitespace token in lexer: hdlSebastian Engel2021-12-038-1086/+767
| | |
| * | Modernize Whitespace token in lexer: haxeSebastian Engel2021-12-033-1635/+1635
| | |
| * | Modernize Whitespace token in lexer: haskellSebastian Engel2021-12-0313-7191/+7198
| | |
| * | Modernize Whitespace token in lexer: graphSebastian Engel2021-11-212-12/+33
| | |
| * | Modernize Whitespace token in lexer: graphicsSebastian Engel2021-11-219-4221/+4245
| | |
| * | Modernize Whitespace token in lexer: grammer_notationSebastian Engel2021-11-214-165/+174
| | |
| * | Modernize Whitespace token in lexer: goSebastian Engel2021-11-212-27/+27
| | |
| * | Modernize Whitespace token in lexer: gdscriptSebastian Engel2021-11-2110-224/+224
| | |
* | | Add f90 as an alias for fortran (closes #2000.)Matthäus G. Chajdas2021-12-293-2/+3
| | |
* | | Provide an accurate count instead of "over 500".Matthäus G. Chajdas2021-12-292-1/+2
| | |
* | | Add link to changelog in sidebar.Matthäus G. Chajdas2021-12-291-10/+1
| | |
* | | Update CHANGES.Matthäus G. Chajdas2021-12-291-1/+5
| | |
* | | Merge pull request #1994 from amitkummer/python-pattern-matchingMatthäus G. Chajdas2021-12-293-1/+236
|\ \ \ | | | | | | | | Python: lex soft keywords
| * | | Python: lex soft keywordsamitkummer2021-12-203-1/+236
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some notes: - This approach is not perfect, but it's rather simple and I can't think of an edge case. - I did not use the `words` function to create the regex matching the keywords list, because it returns a capturing group (`()`) and it needs to be non-capturing here (because of `bygroups` usage). - I chose to go to the 'soft-keywords-inner' state after both `match` and `case`, even though it's unnecessary for `match` (the inner state catches the `_` wildcard keyword which appears only after a `case`). This is mostly harmless and saves us from writing the 'soft-keywords' regex twice each for `match` and `case` with the extra inner state just for `case`. The only piece of code this will lex incorrectly is `match _:` (`_` will be lexed as keyword). I doubt though that pattern mathcing will be used like this.
* | | | Update CHANGES.Matthäus G. Chajdas2021-12-291-0/+1
| | | |
* | | | Update for new Python traceback locations (#2004)Jean-Abou-Samra2021-12-293-3/+3
| | | | | | | | | | | | | | | | Since https://github.com/python/cpython/pull/27037, they can include tildes in addition to the carets.
* | | | Update CHANGES.Matthäus G. Chajdas2021-12-281-0/+1
| | | |
* | | | Fix single and multiline comment regex for GSQL (#2002)Gregory Grubbs2021-12-283-135/+245
| | | | | | | | | | | | | | | | | | | | * Fix single and multiline comment regex for GSQL * Add examples for end-of-line and multiline comments with embedded keywords
* | | | Update CHANGES.Matthäus G. Chajdas2021-12-281-2/+3
| | | |
* | | | Add a tooltips option to HtmlFormatter. (#1822)Walter Dörwald2021-12-283-5/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add a tooltips option to HtmlFormmater. * Rename option tooltips to debug_token_types. * Use explicit if block. * Fix check. * Document how to use the new debug_token_types option for the HTML formatter. * Remove output redirection from example call.
* | | | Some LilyPond updates (#2001)Jean-Abou-Samra2021-12-285-93/+203
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add pitch language names to builtins. They are not highlighted specially in the default style, but can be in a custom style. - Refactor matching of builtins in order to avoid confusion between dim chord modifier and \dim dynamic command. - Support grob subproperties. - Add segno repeat type. - While at it, update builtins for latest version.
* | | | Fix rita.py header (#2003)Jean-Abou-Samra2021-12-281-4/+2
| | | |
* | | | Merge branch 'zaibacu-master'Matthäus G. Chajdas2021-12-286-0/+182
|\ \ \ \
| * | | | Various small fixups for the Rita lexer.Matthäus G. Chajdas2021-12-285-39/+123
| | | | |
| * | | | Merge branch 'master' of github.com:pygments/pygments; branch 'master' of ↵Matthäus G. Chajdas2021-12-285-0/+98
| |\ \ \ \ |/ / / / / | | | | | | | | | | https://github.com/zaibacu/pygments into zaibacu-master
| * | | | Fix regex crashŠarūnas Navickas2020-09-261-2/+2
| | | | |
| * | | | Fix testSarunas Navickas2020-09-141-3/+3
| | | | |
| * | | | Use `Whitespace` instead of `Text`Sarunas Navickas2020-09-141-3/+3
| | | | |
| * | | | Extra case to markSarunas Navickas2020-09-101-0/+2
| | | | |
| * | | | Allow digits in variable namesSarunas Navickas2020-09-091-1/+1
| | | | |
| * | | | Modify rulesSarunas Navickas2020-09-091-1/+3
| | | | |
| * | | | Merge branch 'master' of github.com:zaibacu/pygmentsSarunas Navickas2020-09-095-11/+19
| |\ \ \ \
| | * | | | Missing operatorŠarūnas Navickas2020-09-081-1/+1
| | | | | |
| | * | | | Style fixŠarūnas Navickas2020-09-081-0/+1
| | | | | |
| | * | | | Add example fileŠarūnas Navickas2020-09-081-0/+10
| | | | | |