Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Update CHANGES. | Matthäus G. Chajdas | 2021-12-30 | 1 | -0/+5 | |
| | | ||||||
* | | Update Spice lexer (#2009) | Marc Auberer | 2021-12-30 | 3 | -16/+86 | |
| | | ||||||
* | | CFamily: improve function detection (#2008) | amitkummer | 2021-12-30 | 3 | -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. Chajdas | 2021-12-30 | 1 | -0/+4 | |
| | | ||||||
* | | Remove egg-info section from setup.cfg.2.11.0 | Matthäus G. Chajdas | 2021-12-30 | 1 | -4/+0 | |
| | | ||||||
* | | Bump version number. | Matthäus G. Chajdas | 2021-12-30 | 1 | -1/+1 | |
| | | ||||||
* | | Update release-checklist. | Matthäus G. Chajdas | 2021-12-30 | 1 | -1/+1 | |
| | | | | | | | | Use -m build instead of setup.py. | |||||
* | | Update CHANGES. | Matthäus G. Chajdas | 2021-12-30 | 1 | -9/+11 | |
| | | ||||||
* | | GSQL lexer syntax changes (#2006) | Gregory Grubbs | 2021-12-30 | 3 | -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. Chajdas | 2021-12-29 | 1 | -1/+1 | |
| | | ||||||
* | | Update CHANGES. | Matthäus G. Chajdas | 2021-12-29 | 1 | -1/+1 | |
| | | ||||||
* | | Merge branch 'blu-base-lexers_gh' | Matthäus G. Chajdas | 2021-12-29 | 56 | -14569/+14312 | |
|\ \ | ||||||
| * | | Use words in Cypher lexer. | Matthäus G. Chajdas | 2021-12-29 | 1 | -6/+7 | |
| | | | ||||||
| * | | Merge branch 'master' of github.com:pygments/pygments; branch 'lexers_gh' of ↵ | Matthäus G. Chajdas | 2021-12-29 | 56 | -14567/+14309 | |
| |\ \ |/ / / | | | | | | | https://github.com/blu-base/pygments into blu-base-lexers_gh | |||||
| * | | Modernize Whitespace token in lexer: hexdump | Sebastian Engel | 2021-12-03 | 5 | -6/+6 | |
| | | | ||||||
| * | | Modernize Whitespace token in lexer: hdl | Sebastian Engel | 2021-12-03 | 8 | -1086/+767 | |
| | | | ||||||
| * | | Modernize Whitespace token in lexer: haxe | Sebastian Engel | 2021-12-03 | 3 | -1635/+1635 | |
| | | | ||||||
| * | | Modernize Whitespace token in lexer: haskell | Sebastian Engel | 2021-12-03 | 13 | -7191/+7198 | |
| | | | ||||||
| * | | Modernize Whitespace token in lexer: graph | Sebastian Engel | 2021-11-21 | 2 | -12/+33 | |
| | | | ||||||
| * | | Modernize Whitespace token in lexer: graphics | Sebastian Engel | 2021-11-21 | 9 | -4221/+4245 | |
| | | | ||||||
| * | | Modernize Whitespace token in lexer: grammer_notation | Sebastian Engel | 2021-11-21 | 4 | -165/+174 | |
| | | | ||||||
| * | | Modernize Whitespace token in lexer: go | Sebastian Engel | 2021-11-21 | 2 | -27/+27 | |
| | | | ||||||
| * | | Modernize Whitespace token in lexer: gdscript | Sebastian Engel | 2021-11-21 | 10 | -224/+224 | |
| | | | ||||||
* | | | Add f90 as an alias for fortran (closes #2000.) | Matthäus G. Chajdas | 2021-12-29 | 3 | -2/+3 | |
| | | | ||||||
* | | | Provide an accurate count instead of "over 500". | Matthäus G. Chajdas | 2021-12-29 | 2 | -1/+2 | |
| | | | ||||||
* | | | Add link to changelog in sidebar. | Matthäus G. Chajdas | 2021-12-29 | 1 | -10/+1 | |
| | | | ||||||
* | | | Update CHANGES. | Matthäus G. Chajdas | 2021-12-29 | 1 | -1/+5 | |
| | | | ||||||
* | | | Merge pull request #1994 from amitkummer/python-pattern-matching | Matthäus G. Chajdas | 2021-12-29 | 3 | -1/+236 | |
|\ \ \ | | | | | | | | | Python: lex soft keywords | |||||
| * | | | Python: lex soft keywords | amitkummer | 2021-12-20 | 3 | -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. Chajdas | 2021-12-29 | 1 | -0/+1 | |
| | | | | ||||||
* | | | | Update for new Python traceback locations (#2004) | Jean-Abou-Samra | 2021-12-29 | 3 | -3/+3 | |
| | | | | | | | | | | | | | | | | Since https://github.com/python/cpython/pull/27037, they can include tildes in addition to the carets. | |||||
* | | | | Update CHANGES. | Matthäus G. Chajdas | 2021-12-28 | 1 | -0/+1 | |
| | | | | ||||||
* | | | | Fix single and multiline comment regex for GSQL (#2002) | Gregory Grubbs | 2021-12-28 | 3 | -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. Chajdas | 2021-12-28 | 1 | -2/+3 | |
| | | | | ||||||
* | | | | Add a tooltips option to HtmlFormatter. (#1822) | Walter Dörwald | 2021-12-28 | 3 | -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-Samra | 2021-12-28 | 5 | -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-Samra | 2021-12-28 | 1 | -4/+2 | |
| | | | | ||||||
* | | | | Merge branch 'zaibacu-master' | Matthäus G. Chajdas | 2021-12-28 | 6 | -0/+182 | |
|\ \ \ \ | ||||||
| * | | | | Various small fixups for the Rita lexer. | Matthäus G. Chajdas | 2021-12-28 | 5 | -39/+123 | |
| | | | | | ||||||
| * | | | | Merge branch 'master' of github.com:pygments/pygments; branch 'master' of ↵ | Matthäus G. Chajdas | 2021-12-28 | 5 | -0/+98 | |
| |\ \ \ \ |/ / / / / | | | | | | | | | | | https://github.com/zaibacu/pygments into zaibacu-master | |||||
| * | | | | Fix regex crash | Šarūnas Navickas | 2020-09-26 | 1 | -2/+2 | |
| | | | | | ||||||
| * | | | | Fix test | Sarunas Navickas | 2020-09-14 | 1 | -3/+3 | |
| | | | | | ||||||
| * | | | | Use `Whitespace` instead of `Text` | Sarunas Navickas | 2020-09-14 | 1 | -3/+3 | |
| | | | | | ||||||
| * | | | | Extra case to mark | Sarunas Navickas | 2020-09-10 | 1 | -0/+2 | |
| | | | | | ||||||
| * | | | | Allow digits in variable names | Sarunas Navickas | 2020-09-09 | 1 | -1/+1 | |
| | | | | | ||||||
| * | | | | Modify rules | Sarunas Navickas | 2020-09-09 | 1 | -1/+3 | |
| | | | | | ||||||
| * | | | | Merge branch 'master' of github.com:zaibacu/pygments | Sarunas Navickas | 2020-09-09 | 5 | -11/+19 | |
| |\ \ \ \ | ||||||
| | * | | | | Missing operator | Šarūnas Navickas | 2020-09-08 | 1 | -1/+1 | |
| | | | | | | ||||||
| | * | | | | Style fix | Šarūnas Navickas | 2020-09-08 | 1 | -0/+1 | |
| | | | | | | ||||||
| | * | | | | Add example file | Šarūnas Navickas | 2020-09-08 | 1 | -0/+10 | |
| | | | | | |