summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
...
| * Dont print out all tokens to stdout.Georg Brandl2014-10-081-2/+0
| |
| * Closes #1015: fix lexing of Haskell char literals.Georg Brandl2014-10-081-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 tokenGeorg Brandl2014-10-071-0/+8
| |
| * Fix highlighting of Java enhanced for loops.Tim Hatch2014-10-071-0/+42
| | | | | | | | Fixes #965
| * JavascriptLexer: Support unicode identifiers per standard.Tim Hatch2014-10-071-0/+5
| | | | | | | | Fixes #999
| * MakeLexer: Add GNU Make vpath directive.Tim Hatch2014-10-071-0/+16
| | | | | | | | Fixes #949
| * ScalaLexer: Improve interpolated strings, adding triplequoted strings and ↵Tim Hatch2014-10-071-0/+10
| | | | | | | | test file.
| * Closes #1041: Fix test suite to pass under Python 2.6.Georg Brandl2014-10-073-12/+20
| |
| * Closes #908: fix test suite to test formatters with no Unicode output correctly.Georg Brandl2014-10-071-7/+9
| |
| * Closes #1028: fix filters to return Unicode stringsGeorg Brandl2014-10-071-7/+16
| |
| * Closes #1030: recognize functions with no args in Matlab related lexersGeorg Brandl2014-10-071-0/+4
| |
| * Closes #972: accept "inner attribute" syntax for Rust.Georg Brandl2014-10-071-1/+1
| |
| * Closes #982: fix pathological matching behavior for timestamps in IRC logs lexerGeorg Brandl2014-10-071-1/+3
| |
| * Closes #980: fix DeprecationWarnings (mostly due to files closed by __del__) ↵Georg Brandl2014-10-077-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 Brandl2014-10-071-1/+4
| |
| * Closes #1010: recognize string interpolation in Scala lexer.Georg Brandl2014-10-071-0/+5
| |
| * RubyLexer: Be less picky about closing delimiters.Tim Hatch2014-10-061-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 Hatch2014-10-061-0/+5
| | | | | | | | Fixes #1040
| * BashLexer: Correctly handle $'' strings.Tim Hatch2014-10-061-4/+15
| |
| * BashLexer: Significantly improve handling of quoted strings (and ${})Tim Hatch2014-10-061-0/+52
| | | | | | | | Fixes #994
| * RubyLexer: Highlight operator methods better.Tim Hatch2014-10-061-0/+12
| | | | | | | | Fixes #1033
| * SmartyLexer: Support nested curly braces.Tim Hatch2014-10-061-0/+40
| | | | | | | | Fixes #1039
| * RubyLexer: Keep state with nested interpolationsTim Hatch2014-10-061-1/+62
| | | | | | | | Fixes #1018
| * Correct accidental punctuation range in RubyLexer.Tim Hatch2014-10-061-0/+52
| | | | | | | | Fixes #1006
| * Fix minor problems noted by regexlint and 'make check'Tim Hatch2014-10-041-1/+3
| |
| * Python3 compat in test_utilTim Hatch2014-10-031-3/+1
| |
| * Add util function for keyword list formattingTim Hatch2014-10-031-0/+10
| |
| * Added 5 keywords to Agda lexer. Extended test.abel2014-10-021-0/+7
| | | | | | | | | | Added 'instance', 'postulate', 'renaming', 'tactic', 'unquoteDecl'. Added the first three to test.agda.
| * Merged in lsf37/pygments-main (pull request #386)Georg Brandl2014-09-2019-1825/+2326
| |\
| | * Sort out Unicode output issues with RTF and image formatters.Georg Brandl2014-09-201-1/+1
| | |
| | * Don't test lexer classes from arbitrary plugins.Georg Brandl2014-09-201-2/+2
| | |
| | * make test with -v a bit easier on the eyesGeorg Brandl2014-09-202-12/+14
| | |
| | * basic API test: use SkipTest; PEP8Georg Brandl2014-09-203-14/+19
| | |
| | * Do not pass the stats dict, it screws up -v outputGeorg Brandl2014-09-201-5/+8
| | |
| | * Make each instantiation a single testGeorg Brandl2014-09-201-2/+4
| | |
| | * regexopt: return the uncompiled regex.Georg Brandl2014-09-201-1/+2
| | |
| | * Fix unit display.Georg Brandl2014-09-201-2/+2
| | |
| | * Shorten some long example files.Georg Brandl2014-09-202-1775/+0
| | |
| | * Keep track of speed stats in test_examplefiles and print a list of slowest ↵Georg Brandl2014-09-201-2/+22
| | | | | | | | | | | | absolute/relative lexers at the end (run with TEST=-s to see).
| | * Remove the misc subpackage.Georg Brandl2014-09-201-1/+1
| | |
| | * Refactored formatter mapping to work like the lexer mapping.Georg Brandl2014-09-201-6/+10
| | | | | | | | | | | | Thanks to Ilia Choly for the initial pull request.
| | * Merged in jaingaurav2/pygments-main-1011 (pull request #376)Georg Brandl2014-09-2012-15/+2250
| | |\
| | | * split up text lexersGeorg Brandl2014-09-191-1/+1
| | | |
| | | * Make all keyword lists in special modules into tuples.Georg Brandl2014-09-191-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 Brandl2014-09-191-1/+1
| | | |
| | | * Add module to optimize regexes that consist of a long |-separated list of ↵Georg Brandl2014-09-161-0/+39
| | | | | | | | | | | | | | | | literals.
| | | * Merged in jrnold/pygments-main-stan (pull request #377)Georg Brandl2014-09-161-1/+10
| | | |\ | | | | | | | | | | | | | | | Updated StanLexer to Stan version 2.4.0
| | | | * Update StanLexer to support Stan v2.4.0Jeffrey B. Arnold2014-07-271-2/+6
| | | | |
| | | | * moved void to type and added example fileJeffrey B. Arnold2014-06-301-0/+5
| | | | |
| | | * | Merged in andyli/pygments-main (pull request #391)Georg Brandl2014-09-161-0/+7
| | | |\ \ | | | | | | | | | | | | | | | | | | HaxeLexer fix