summaryrefslogtreecommitdiff
path: root/pygments/lexers/jvm.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove all files, redirect to GitHub.HEADmasterMatth?us G. Chajdas2019-11-101-1654/+0
|
* Fixup all headers and some more minor problems.2.4.2Georg Brandl2019-05-281-1/+1
|
* some fixes to the kotlin lexer to work with the corda kolin codebasenimmajbb2019-04-011-3/+30
|
* Update SARL added date, regenerate mapping.Matth?us G. Chajdas2018-12-161-1/+1
|
* Merged in sgalland/pygments-main (pull request #717)Anteru2018-12-161-1/+55
|\ | | | | | | Add the lexer for the SARL language.
| * Add the lexer for the SARL language.St?phane GALLAND2017-04-041-1/+55
| |
* | Merge heads.Georg Brandl2018-11-281-3/+3
|\ \
| * | Fix remaining 'DeprecationWarning: invalid escape sequence' occurrences in ↵Andreas Kloeckner2018-06-191-3/+3
| |/ | | | | | | lexer files
* | Clojure: extend valid_name to contain "|".Georg Brandl2017-01-291-1/+1
|/
* Copyright update.Georg Brandl2017-01-221-1/+1
|
* Speed up regex for searching numbers in jvm languagesMaxim Logunov2016-04-191-12/+12
| | | | | The problem was in expressions like `r'[0-9](_*[0-9]+)*'`. They find numbers which can contains underscores. Proposed expressions are equivalent (e.g. `r'[0-9][0-9_]*'`). This change significantly improves performance of a whole expression.
* Java lexer: add "import static" (fixes #1228)Georg Brandl2016-04-141-2/+4
|
* Fix most complaints from regexlint.Georg Brandl2016-02-141-2/+2
|
* Improve numeric literal support in Java lexerAlden Rogers2016-01-101-3/+12
| | | | | | | Previously unsupported literals (binary, octal, hex floats) are now recognized, and all regexes better match the Java Language Specification (especially concerning underscores, suffixes, and the many ways to write decimal floats).
* update list of Kotlin keywords according to language changes up to 1.0 betayole2015-10-201-7/+9
|
* Fixes #1139: Correctly order symbol and char literals in ScalaLexerTim Hatch2015-10-161-1/+1
|
* Syntax highlight Gradle files with GroovyAlex Selesse2015-05-061-1/+1
|
* Minor fix for the Ceylon Lexertako2015-02-181-2/+1
|
* Updated keywords for Ceylon languagetako2015-02-171-9/+10
|
* Copyright year update.Georg Brandl2015-01-211-1/+1
|
* JVM lexers: simplify charclassesGeorg Brandl2014-11-061-54/+54
|
* Groovy: recognize triple quoted stringsGeorg Brandl2014-11-061-0/+2
|
* Scala: fix recognition of Unicode => operatorGeorg Brandl2014-11-061-2/+2
|
* Closes #1050: highlight Java package names after "package" like after "import".Georg Brandl2014-11-041-1/+1
|
* Closes #1051: fix misrecognition of throw and return statements as methodGeorg Brandl2014-11-041-3/+5
| | | | signatures in the Java lexer.
* More fixes thanks to regexlint.Georg Brandl2014-10-161-1/+1
|
* Fix "matches empty string" complaints from regexlint.Georg Brandl2014-10-161-2/+4
|
* Merge with -mainTim Hatch2014-10-151-3/+3
|\
| * Use unistring.combine for slight speedup.Tim Hatch2014-10-151-3/+3
| |
* | all lexers: fix unescaped { and } so that the "regex" module can compile our ↵Georg Brandl2014-10-151-5/+5
|/ | | | regexes
* Fix highlighting of Java enhanced for loops.Tim Hatch2014-10-071-1/+1
| | | | Fixes #965
* ScalaLexer: Improve interpolated strings, adding triplequoted strings and ↵Tim Hatch2014-10-071-4/+15
| | | | test file.
* Scala: add $$ escape for interpolated strings. (#1010)Georg Brandl2014-10-071-0/+1
|
* Closes #1010: recognize string interpolation in Scala lexer.Georg Brandl2014-10-071-0/+13
|
* misc fixups in math.py and jvm.pyGeorg Brandl2014-09-201-108/+109
|
* fix global instantiation of GosuLexer.Georg Brandl2014-09-161-2/+2
|
* add the new upcomming decorator syntax for GoloYannick Loiseau2014-08-261-0/+1
|
* Add token type Number.BinDavid Corbett2014-05-191-2/+2
|
* Apply default state transition in various lexers to avoid extra token generationGaurav Jain2014-05-181-5/+5
|
* Merged in timgilbert/pygments-main/clj-keyword-fix (pull request #326)Tim Hatch2014-05-171-72/+339
|\ | | | | | | Tweaking clojure keyword lexing
| * Only allow one shebang in Groovy filesGaurav Jain2014-05-161-1/+1
| |
| * Add shebang support to Groovy lexerGaurav Jain2014-05-161-0/+8
| |
| * Merged birkenfeld/pygments-main into defaultGaurav Jain2014-05-161-59/+70
| |\
| | * Merged in jaingaurav2/pygments-main (pull request #357)Tim Hatch2014-05-161-1/+1
| | |\ | | | | | | | | | | | | Numerous regexlint fixes
| | | * Replace a-z0-9_ with \w when IGNORECASE is setGaurav Jain2014-05-151-1/+1
| | | |
| | * | Merged in dscorbett/pygments-jasmin (pull request #349)Tim Hatch2014-05-151-67/+67
| | |\ \ | | | |/ | | | | | | | | Add JasminLexer.analyse_text
| | | * Replace all occurences of a-zA-Z0-9_ with \wGaurav Jain2014-05-141-35/+35
| | | |
| | | * Replace all occurences of [a-zA-Z0-9_] with \wGaurav Jain2014-05-141-29/+29
| | | |
| | | * Fix some lines to be within 90 charactersGaurav Jain2014-05-121-8/+8
| | | | | | | | | | | | | | | | Some regular expressions has been simplified to use \w in order to reduce line length
| | * | Fix Jasmin and Smali code snippet detectionDavid Corbett2014-05-131-6/+7
| | | |