Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Dont print out all tokens to stdout. | Georg Brandl | 2014-10-08 | 1 | -2/+0 | |
| | | ||||||
| * | Closes #1015: fix lexing of Haskell char literals. | Georg Brandl | 2014-10-08 | 1 | -0/+4 | |
| | | | | | | | | | | In the case of TH quoting, 'f'7 means char literal and then numeric 7, not quoted f'7, see http://www.haskell.org/ghc/docs/7.6.2/html/users_guide/template-haskell.html | |||||
| * | PHP: allow spaces before heredoc end token | Georg Brandl | 2014-10-07 | 1 | -0/+8 | |
| | | ||||||
| * | Fix highlighting of Java enhanced for loops. | Tim Hatch | 2014-10-07 | 1 | -0/+42 | |
| | | | | | | | | Fixes #965 | |||||
| * | JavascriptLexer: Support unicode identifiers per standard. | Tim Hatch | 2014-10-07 | 1 | -0/+5 | |
| | | | | | | | | Fixes #999 | |||||
| * | MakeLexer: Add GNU Make vpath directive. | Tim Hatch | 2014-10-07 | 1 | -0/+16 | |
| | | | | | | | | Fixes #949 | |||||
| * | ScalaLexer: Improve interpolated strings, adding triplequoted strings and ↵ | Tim Hatch | 2014-10-07 | 1 | -0/+10 | |
| | | | | | | | | test file. | |||||
| * | Closes #1041: Fix test suite to pass under Python 2.6. | Georg Brandl | 2014-10-07 | 3 | -12/+20 | |
| | | ||||||
| * | Closes #908: fix test suite to test formatters with no Unicode output correctly. | Georg Brandl | 2014-10-07 | 1 | -7/+9 | |
| | | ||||||
| * | Closes #1028: fix filters to return Unicode strings | Georg Brandl | 2014-10-07 | 1 | -7/+16 | |
| | | ||||||
| * | Closes #1030: recognize functions with no args in Matlab related lexers | Georg Brandl | 2014-10-07 | 1 | -0/+4 | |
| | | ||||||
| * | Closes #972: accept "inner attribute" syntax for Rust. | Georg Brandl | 2014-10-07 | 1 | -1/+1 | |
| | | ||||||
| * | Closes #982: fix pathological matching behavior for timestamps in IRC logs lexer | Georg Brandl | 2014-10-07 | 1 | -1/+3 | |
| | | ||||||
| * | Closes #980: fix DeprecationWarnings (mostly due to files closed by __del__) ↵ | Georg Brandl | 2014-10-07 | 7 | -51/+22 | |
| | | | | | | | | | | | | on Py3. Also fix a bunch of other uses of open() to use the with statement. | |||||
| * | Closes #874: do not swallow incomplete tracebacks in the Python console lexer. | Georg Brandl | 2014-10-07 | 1 | -1/+4 | |
| | | ||||||
| * | Closes #1010: recognize string interpolation in Scala lexer. | Georg Brandl | 2014-10-07 | 1 | -0/+5 | |
| | | ||||||
| * | RubyLexer: Be less picky about closing delimiters. | Tim Hatch | 2014-10-06 | 1 | -0/+20 | |
| | | | | | | | | | | | | | | Previous code used a negative lookbehind, which I do not grok how was ever correct. New code with testcase. Fixes #1026 | |||||
| * | DockerLexer: Improve multiline and quote handling. | Tim Hatch | 2014-10-06 | 1 | -0/+5 | |
| | | | | | | | | Fixes #1040 | |||||
| * | BashLexer: Correctly handle $'' strings. | Tim Hatch | 2014-10-06 | 1 | -4/+15 | |
| | | ||||||
| * | BashLexer: Significantly improve handling of quoted strings (and ${}) | Tim Hatch | 2014-10-06 | 1 | -0/+52 | |
| | | | | | | | | Fixes #994 | |||||
| * | RubyLexer: Highlight operator methods better. | Tim Hatch | 2014-10-06 | 1 | -0/+12 | |
| | | | | | | | | Fixes #1033 | |||||
| * | SmartyLexer: Support nested curly braces. | Tim Hatch | 2014-10-06 | 1 | -0/+40 | |
| | | | | | | | | Fixes #1039 | |||||
| * | RubyLexer: Keep state with nested interpolations | Tim Hatch | 2014-10-06 | 1 | -1/+62 | |
| | | | | | | | | Fixes #1018 | |||||
| * | Correct accidental punctuation range in RubyLexer. | Tim Hatch | 2014-10-06 | 1 | -0/+52 | |
| | | | | | | | | Fixes #1006 | |||||
| * | Fix minor problems noted by regexlint and 'make check' | Tim Hatch | 2014-10-04 | 1 | -1/+3 | |
| | | ||||||
| * | Python3 compat in test_util | Tim Hatch | 2014-10-03 | 1 | -3/+1 | |
| | | ||||||
| * | Add util function for keyword list formatting | Tim Hatch | 2014-10-03 | 1 | -0/+10 | |
| | | ||||||
| * | Added 5 keywords to Agda lexer. Extended test. | abel | 2014-10-02 | 1 | -0/+7 | |
| | | | | | | | | | | Added 'instance', 'postulate', 'renaming', 'tactic', 'unquoteDecl'. Added the first three to test.agda. | |||||
| * | Merged in lsf37/pygments-main (pull request #386) | Georg Brandl | 2014-09-20 | 19 | -1825/+2326 | |
| |\ | ||||||
| | * | Sort out Unicode output issues with RTF and image formatters. | Georg Brandl | 2014-09-20 | 1 | -1/+1 | |
| | | | ||||||
| | * | Don't test lexer classes from arbitrary plugins. | Georg Brandl | 2014-09-20 | 1 | -2/+2 | |
| | | | ||||||
| | * | make test with -v a bit easier on the eyes | Georg Brandl | 2014-09-20 | 2 | -12/+14 | |
| | | | ||||||
| | * | basic API test: use SkipTest; PEP8 | Georg Brandl | 2014-09-20 | 3 | -14/+19 | |
| | | | ||||||
| | * | Do not pass the stats dict, it screws up -v output | Georg Brandl | 2014-09-20 | 1 | -5/+8 | |
| | | | ||||||
| | * | Make each instantiation a single test | Georg Brandl | 2014-09-20 | 1 | -2/+4 | |
| | | | ||||||
| | * | regexopt: return the uncompiled regex. | Georg Brandl | 2014-09-20 | 1 | -1/+2 | |
| | | | ||||||
| | * | Fix unit display. | Georg Brandl | 2014-09-20 | 1 | -2/+2 | |
| | | | ||||||
| | * | Shorten some long example files. | Georg Brandl | 2014-09-20 | 2 | -1775/+0 | |
| | | | ||||||
| | * | Keep track of speed stats in test_examplefiles and print a list of slowest ↵ | Georg Brandl | 2014-09-20 | 1 | -2/+22 | |
| | | | | | | | | | | | | absolute/relative lexers at the end (run with TEST=-s to see). | |||||
| | * | Remove the misc subpackage. | Georg Brandl | 2014-09-20 | 1 | -1/+1 | |
| | | | ||||||
| | * | Refactored formatter mapping to work like the lexer mapping. | Georg Brandl | 2014-09-20 | 1 | -6/+10 | |
| | | | | | | | | | | | | Thanks to Ilia Choly for the initial pull request. | |||||
| | * | Merged in jaingaurav2/pygments-main-1011 (pull request #376) | Georg Brandl | 2014-09-20 | 12 | -15/+2250 | |
| | |\ | ||||||
| | | * | split up text lexers | Georg Brandl | 2014-09-19 | 1 | -1/+1 | |
| | | | | ||||||
| | | * | Make all keyword lists in special modules into tuples. | Georg Brandl | 2014-09-19 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | Tuples of strings are stored as prebuild constants in the .pyc file instead of having to build a list element by element at runtime. | |||||
| | | * | Fix import. | Georg Brandl | 2014-09-19 | 1 | -1/+1 | |
| | | | | ||||||
| | | * | Add module to optimize regexes that consist of a long |-separated list of ↵ | Georg Brandl | 2014-09-16 | 1 | -0/+39 | |
| | | | | | | | | | | | | | | | | literals. | |||||
| | | * | Merged in jrnold/pygments-main-stan (pull request #377) | Georg Brandl | 2014-09-16 | 1 | -1/+10 | |
| | | |\ | | | | | | | | | | | | | | | | Updated StanLexer to Stan version 2.4.0 | |||||
| | | | * | Update StanLexer to support Stan v2.4.0 | Jeffrey B. Arnold | 2014-07-27 | 1 | -2/+6 | |
| | | | | | ||||||
| | | | * | moved void to type and added example file | Jeffrey B. Arnold | 2014-06-30 | 1 | -0/+5 | |
| | | | | | ||||||
| | | * | | Merged in andyli/pygments-main (pull request #391) | Georg Brandl | 2014-09-16 | 1 | -0/+7 | |
| | | |\ \ | | | | | | | | | | | | | | | | | | | HaxeLexer fix |