summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | | | | | add "batch" alias to batch lexerGeorg Brandl2014-01-092-2/+2
| | | | | | | | | | |
* | | | | | | | | | | Closes #891: remove too broad string escape regex from Prolog lexer.Georg Brandl2014-01-091-1/+1
| | | | | | | | | | |
* | | | | | | | | | | Closes #899: fix too greedy expression in PHP string interpolation highlightingGeorg Brandl2014-01-091-1/+1
| | | | | | | | | | |
* | | | | | | | | | | changelog: #944Georg Brandl2014-01-091-0/+2
| | | | | | | | | | |
* | | | | | | | | | | Closes #944: fix "ws1" regex in C family lexers to allow "indented" ↵Georg Brandl2014-01-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | preprocessor directives
* | | | | | | | | | | Closes #942: add CMake generator expressions.Georg Brandl2014-01-091-0/+1
| | | | | | | | | | |
* | | | | | | | | | | Closes #851: remove BOM also with explicit encodingGeorg Brandl2014-01-091-0/+2
| | | | | | | | | | |
* | | | | | | | | | | tests: make sure lexer aliases are registered lowercaseGeorg Brandl2014-01-098-26/+30
| | | | | | | | | | |
* | | | | | | | | | | Closes #939: make alias lookup case-insensitiveGeorg Brandl2014-01-091-1/+1
| | | | | | | | | | |
* | | | | | | | | | | Closes #921: add binary literals to Python 2.Georg Brandl2014-01-091-0/+1
| | | | | | | | | | |
* | | | | | | | | | | Closes #915: fix parsing of nested multiline comments.Georg Brandl2014-01-092-1/+9
| | | | | | | | | | |
* | | | | | | | | | | Closes #912: add brackets for lists in velocityGeorg Brandl2014-01-091-1/+3
| | | | | | | | | | |
* | | | | | | | | | | tests: fix test_lexers_other for Python 3Georg Brandl2014-01-091-1/+1
| | | | | | | | | | |
* | | | | | | | | | | examplefiles test: change logic to actually lex each file with the intended ↵Georg Brandl2014-01-096-11/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | lexer
* | | | | | | | | | | matlab session: fix roundtripsGeorg Brandl2014-01-091-2/+8
| | | | | | | | | | |
* | | | | | | | | | | a friendly reminder to run setup.py build before make test on py3Georg Brandl2014-01-091-0/+4
| | | | | | | | | | |
* | | | | | | | | | | Closes #928: now also code-block directives are handled specially.Georg Brandl2014-01-091-4/+5
| | | | | | | | | | |
* | | | | | | | | | | mergeGeorg Brandl2014-01-091-1/+1
|\ \ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ Merged in EricFromCanada/pygments-main (pull request #272)Georg Brandl2014-01-091-1/+1
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | reST: fix for indented field list after blank line (fixes #905)
| | * | | | | | | | | | | reST: fix for indented field list after blank line (fixes #905)EricFromCanada2014-01-091-1/+1
| | | | | | | | | | | | |
* | | | | | | | | | | | | Closes #887: allow brackets in fortran.Georg Brandl2014-01-091-1/+1
|/ / / / / / / / / / / /
* | | | | | | | | | | | Closes #916: remove strange "case" special case that leads to problemsGeorg Brandl2014-01-091-2/+1
| | | | | | | | | | | |
* | | | | | | | | | | | Closes #902: add missing option "]" after prompt in ShellSession lexerGeorg Brandl2014-01-091-1/+1
| | | | | | | | | | | |
* | | | | | | | | | | | Closes #914: powershell: recognize escaped backtick correctlyGeorg Brandl2014-01-091-1/+1
|/ / / / / / / / / / /
* | | | | | | | | | | perl6: disable analyse_text for now, the lexer seems to like to loop sometimesGeorg Brandl2014-01-091-0/+4
| | | | | | | | | | |
* | | | | | | | | | | css: add "$" to possible operators (fixes #932)Georg Brandl2014-01-091-1/+1
| | | | | | | | | | |
* | | | | | | | | | | resolve alias conflict between hy and hybrisGeorg Brandl2014-01-092-2/+2
| | | | | | | | | | |
* | | | | | | | | | | Merged in ↵Georg Brandl2014-01-091-1/+4
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | roskakori/pygments-main-1/roskakori/simplified-debugging-of-endless-loops-in-1370182352684 (pull request #207) Simplified debugging of infinite loops in lexers with random generated content
| * | | | | | | | | | | Changed error message to use lexer class instead of lexer name.Thomas Aglassinger2013-06-021-1/+1
| | | | | | | | | | | |
| * | | | | | | | | | | Simplified debugging of endless loops in lexers with random generated ↵Thomas Aglassinger2013-06-021-1/+4
| | |_|/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | content. If the developer terminates the test by pressing Control-C, the resulting KeyboardInterrupt describes the lexer and content that caused the test to get stuck.
* | | | | | | | | | | mergeGeorg Brandl2014-01-092-1/+4
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | changelog: add PR#205Georg Brandl2014-01-091-0/+3
| | | | | | | | | | | |
| * | | | | | | | | | | mapping update again.Georg Brandl2014-01-091-1/+1
| | | | | | | | | | | |
* | | | | | | | | | | | Merged in ddbennett/pygments (pull request #205)Georg Brandl2014-01-0943-537/+2167
|\ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | Use a regular expression cache to avoid redundant and expensive RE compiles
| * | | | | | | | | | | kal: changelog and attributionGeorg Brandl2014-01-093-0/+4
| | | | | | | | | | | |
| * | | | | | | | | | | Merged in robzimmerman/pygments-main (pull request #233)Georg Brandl2014-01-093-1/+193
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add Kal lexer
| | * | | | | | | | | | | Add Kal lexerRob Zimmerman2013-09-033-1/+193
| | |/ / / / / / / / / /
| * | | | | | | | | | | Merged in j3lamp/pygments-main (pull request #206)Georg Brandl2014-01-0941-535/+1969
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix for Issue #875
| | * | | | | | | | | | | lexer mapping updateGeorg Brandl2014-01-092-5/+5
| | | | | | | | | | | | |
| | * | | | | | | | | | | chapel: changelog and attributionGeorg Brandl2014-01-093-0/+4
| | | | | | | | | | | | |
| | * | | | | | | | | | | Merged in thomasvandoren/pygments-main (pull request #256)Georg Brandl2014-01-0936-517/+1745
| | |\ \ \ \ \ \ \ \ \ \ \
| | | * \ \ \ \ \ \ \ \ \ \ Merged in greghendershott/pygments-main/fix-racket-lambda (pull request #218)Georg Brandl2014-01-091-1/+1
| | | |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add Unicode prefix to lambda string literal in Racket lexer: u'?'
| | | | * | | | | | | | | | | Add Unicode prefix to lambda string literal in Racket lexer: u'?'Greg Hendershott2013-07-181-1/+1
| | | | |/ / / / / / / / / /
| | | * | | | | | | | | | | Merged in ↵Georg Brandl2014-01-0940-531/+1766
| | | |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | agilbert/pygments-main-1/agilbert/fix-a-typo-wrong-website-1373559184766 (pull request #217) Fix a typo (wrong website)
| | | | * \ \ \ \ \ \ \ \ \ \ Merged in splattael/pygments-main/elixir-non-greed-single-quote (pull ↵Georg Brandl2014-01-092-2/+4
| | | | |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | request #216) Elixir's lexer shouldn't be greedy on single quoted strings.
| | | | | * | | | | | | | | | | Elixir's lexer should be greedy on single quoted strings.Peter Suschlik2013-07-112-2/+4
| | | | | |/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | After this commit this code will be highlighted correctly: HashDict.new [{'A', 0}, {'T', 0}, {'C', 0}, {'G', 0}]
| | | | * | | | | | | | | | | hy: changelog and consistency updatesGeorg Brandl2014-01-093-1/+4
| | | | | | | | | | | | | | |
| | | | * | | | | | | | | | | Merged in rwtolbert/pygments-main (pull request #238)Georg Brandl2014-01-0937-527/+1477
| | | | |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added lexer for new Hy language, a variant of Lisp running under Python
| | | | | * | | | | | | | | | | pike: consistency updatesGeorg Brandl2014-01-093-2/+5
| | | | | | | | | | | | | | | |
| | | | | * | | | | | | | | | | Merge in webhat/pygments-main-with-pike (pull request #237)Georg Brandl2014-01-096-1/+439
| | | | | |\ \ \ \ \ \ \ \ \ \ \