summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* GraphQL: add URLHEADmasterJean Abou Samra2023-05-141-0/+1
|
* Update CHANGESJean Abou Samra2023-05-141-0/+5
|
* Add support for GraphQL (#2428)mazza2023-05-1431-0/+1786
| | | Co-authored-by: Jean Abou Samra <jean@abou-samra.fr>
* Update CHANGESJean Abou Samra2023-05-081-0/+1
|
* Update uxntal lexer to reflect current runes (#2424)Dave VanEe2023-05-084-2165/+2147
|
* Add Terminal Tips Documentation (#2425)Micah Cochran2023-05-072-0/+106
| | | | | | | | | | | * add Terminal Tips Documentation - Issue #2131 * add newlines after ::, typo * Add highlight directive --------- Co-authored-by: Jean Abou Samra <jean@abou-samra.fr>
* Update CHANGESJean Abou Samra2023-05-011-0/+1
|
* [elpi] handle quotations (#2419)Enrico Tassi2023-04-302-1/+42
| | | Co-authored-by: Jean Abou Samra <jean@abou-samra.fr>
* Update CHANGESJean Abou Samra2023-04-261-0/+1
|
* Updates C and C++ lexers (#2422)Christopher Di Bella2023-04-263-2/+33
| | | | | | | | | | | * replaces `restrict` with `__restrict` in C++ `restrict` isn't a C++ keyword, but `__restrict` is recognised by Clang, GCC, and MSVC as a language extension. * adds `_BitInt` and `__int128` as C and C++ types * `_BitInt` is a new C type and an extended integral type for C++. * `__int128` is an extended integral type on both Clang and GCC.
* adds C++ alternative tokens as keywords (#2421)Christopher Di Bella2023-04-262-1/+48
|
* Update CHANGESJean Abou Samra2023-04-201-1/+5
|
* lean: correctly parse expressions nested within attributes (#1817)Eric Wieser2023-04-203-23/+61
|
* Add Pre-sorted Group keyword (#2417)Adrien nayrat2023-04-201-1/+1
|
* Prepare for next release.Matthäus G. Chajdas2023-04-181-0/+4
|
* Prepare 2.15.1 release.2.15.1Matthäus G. Chajdas2023-04-182-3/+7
|
* Improve Java properties lexer (#2404)Jean Abou-Samra2023-04-175-38/+145
| | | | | | Use special lexer rules for escapes; fixes catastrophic backtracking, and highlights them too. Fixes #2356
* Update CHANGESJean Abou Samra2023-04-171-1/+2
|
* Refactor PythonConsoleLexer as a DelegatingLexer (#2412)Jean Abou-Samra2023-04-176-96/+125
| | | | | This is simpler and more reliable than hand-coding the state machine. Fixes #2411
* Python console: do not require output that looks like a traceback to be ↵Georg Brandl2023-04-123-2/+115
| | | | valid (#2410)
* PythonTracebackLexer: minor tweak in docstringJean Abou Samra2023-04-121-1/+1
|
* Enable Sphinx nitpicky mode and fix warnings (#2403)Jean Abou-Samra2023-04-115-9/+15
|
* Prepare for next release.Matthäus G. Chajdas2023-04-101-0/+4
|
* Prepare 2.15 release.2.15.0Matthäus G. Chajdas2023-04-102-2/+2
|
* Prepare for release.Matthäus G. Chajdas2023-04-108-6/+17
| | | | | | * Update CHANGES. * Fix missing `versionadded` declarations. * Fix a few linter issues.
* Update CHANGESMatthäus G. Chajdas2023-04-091-7/+11
|
* Merge pull request #2406 from rdbende/fix-fromimport-noneMatthäus G. Chajdas2023-04-091-1/+1
|\ | | | | Fix token for None after fromimport in PythonLexer
| * Change token of None after from keywordrdbende2023-04-081-1/+1
|/
* Update CHANGESJean Abou Samra2023-04-051-0/+1
|
* Add lexer for MediaWiki Wikitext (#2373)diskdance2023-04-0523-1/+121390
|
* Update CHANGESJean Abou Samra2023-04-041-0/+1
|
* Add PostgreSQL Explain lexer (#2398)Adrien nayrat2023-04-046-4/+3125
| | | | | | | | | | This lexer add support for PostgreSQL Explain plan : https://www.postgresql.org/docs/current/sql-explain.html This was heavily inspired by Maxence Ahlouche work, thanks to him : https://github.com/maahl/pg_explain_lexer Co-authored-by: Jean Abou Samra <jean@abou-samra.fr>
* Update CHANGESJean Abou Samra2023-04-031-0/+1
|
* update fg color to match latest primer style (#2401)Aniket Teredesai2023-04-031-1/+1
|
* Fix page titleJean Abou Samra2023-03-301-0/+1
|
* Use autodoc for pygments.stylesJean Abou Samra2023-03-303-59/+33
|
* Use autodoc for pygments.lexersJean Abou Samra2023-03-302-105/+52
|
* Use autodoc for pygments.utilJean Abou Samra2023-03-302-36/+32
|
* Use autodoc for Formatter classJean Abou Samra2023-03-302-57/+41
|
* Use autodoc a bit moreJean Abou Samra2023-03-303-130/+98
|
* tox -e mapfilesJean Abou Samra2023-03-301-1/+1
| | | | (sorry, I forgot that the docstrings are part of _mapping.py)
* Slightly clarify documentation of HtmlFormatter nowrap optionJean Abou Samra2023-03-301-7/+5
| | | | Fixes #2396
* Update copyright year in wgsl.py (fixes tox -e check)Jean Abou Samra2023-03-301-2/+2
|
* Update CHANGESJean Abou Samra2023-03-301-0/+1
|
* Lexer for the WebGPU Shading Language (#2386)David Neto2023-03-3018-0/+2782
| | | | | | | | | | See https://w3.org/TR/WGSL Further work is needed to refine it: - treat context-dependent names specially - treat template start and template end tokens specially, perhaps Fixes: #2388
* Update CHANGESJean Abou Samra2023-03-291-0/+1
|
* adds hcl alias for terraform syntax (#2375)Christopher Baklid2023-03-292-3/+3
| | | | This PR adds hcl as an option for highlighting HCL syntax as Hashicorp uses HCL for more than just Terraform, like Nomad.
* Merge pull request #2393 from pygments/anteru/year-2023Matthäus G. Chajdas2023-03-29342-347/+347
|\ | | | | Update copyright year to 2023.
| * Update copyright year to 2023.Matthäus G. Chajdas2023-03-29342-347/+347
|/
* Move more tests to tests/snippets instead of .py files (#2344)Jean Abou-Samra2023-03-2924-372/+999
| | | | These are easier to update in tests/snippets/ (just run with --update-goldens).