summaryrefslogtreecommitdiff
path: root/pygments/lexers/compiled.py
Commit message (Collapse)AuthorAgeFilesLines
* Copyright year update.Georg Brandl2015-01-211-1/+1
|
* Remove the misc subpackage.Georg Brandl2014-09-201-8/+6
|
* Remove the c_like subpackage.Georg Brandl2014-09-201-6/+6
|
* split up text lexersGeorg Brandl2014-09-191-1/+1
|
* reorganization of other.py, part 3/3Georg Brandl2014-09-191-1/+1
|
* reorganization of other.py, part 1Georg Brandl2014-09-191-1/+1
|
* split up lexers.compiled into multiple submodulesGeorg Brandl2014-09-161-5363/+23
|
* fix up words() use in the rest of compiled.pyGeorg Brandl2014-09-161-99/+113
|
* More words() for c-like languages.Georg Brandl2014-09-161-160/+186
|
* some PEP8 and minor words() introductionGeorg Brandl2014-09-161-61/+61
|
* More words() in Rust and Monkey languagesGeorg Brandl2014-09-161-56/+58
|
* More words() in c-like languagesGeorg Brandl2014-09-161-51/+72
|
* Mql: switch to words()Georg Brandl2014-09-161-422/+433
|
* Swift: use sets for lookupGeorg Brandl2014-09-161-33/+42
|
* Nit lexer: untabify and apply words().Georg Brandl2014-09-161-41/+44
|
* convert C and C-like lexers to use "words" functionGeorg Brandl2014-09-161-49/+66
|
* convert FortranLexer to use "words" functionGeorg Brandl2014-09-161-70/+82
|
* Add optional whitespace in F90 "end" constructs.Georg Brandl2014-09-161-7/+8
|
* Merged in ↵Georg Brandl2014-09-161-35/+49
|\ | | | | | | | | | | aphirst/pygments-main/aphirst/added-missing-fortran-20038-keywordsintr-1406288193785 (pull request #384) Added missing Fortran 2003/8 keywords/intrinsics.
| * Further increased the Fortran KEYWORD list, specifically the various END* ↵Adam Hirst2014-07-301-13/+16
| | | | | | | | variants which do not include the insignificant blank.
| * Added ASSOCIATE, ENDASSOCIATE, and ENDBLOCKAdam Hirst2014-07-291-13/+13
| |
| * Corrected typographical error.Adam Hirst2014-07-251-2/+2
| |
| * Added missing Fortran 2003/8 keywords/intrinsics.Adam Hirst2014-07-251-35/+46
| | | | | | | | | | | | Modelled after https://github.com/geany/geany/commit/05dda6b001ac71d0fc8592f480e30b8a52e2def5 which I submitted to Geany earlier this year. Source: "Modern Fortran Explained" by Metcalf
* | Nit lexer: add changelog entry, attribution, mapfile entry, cat all example ↵Georg Brandl2014-09-161-1/+5
| | | | | | | | files into one
* | merge with R4PaSs/pygments-mainGeorg Brandl2014-09-161-8/+16
|\ \
| * \ Merged in omasanori/pygments (pull request #388)Georg Brandl2014-09-161-1/+7
| |\ \ | | | | | | | | | | | | Fix RustLexer to handle nested block comments.
| | * | Fix RustLexer to handle nested block comments.Masanori Ogino2014-08-031-1/+7
| | |/ | | | | | | | | | Since Rust 0.9, block comments (e.g. /* ... */) may be nested.
| * | Parse octal ints before regular intsThomas Van Doren2014-09-091-2/+2
| | |
| * | Add 'with' keyword and octal int.Thomas Van Doren2014-09-091-1/+3
| | | | | | | | | | | | | | | 'with' keyword is added to the language for the upcoming release to support task ref intents. Octal integers are also entering the language.
| * | Merged birkenfeld/pygments-main into defaultthomasvandoren2014-09-091-5/+5
| |\ \
| | * | Update ChapelLexer prior to Pygments 2.0 release.Thomas Van Doren2014-07-031-5/+5
| | |/ | | | | | | | | | | | | | | | | | | | | | * Adds `align`, `noinit`, and `pragma` keywords. * Updates decimal integer definition to allow any number of leading zeros, as per spec. * Adds `<~>` operator, which is used for convenience when reading or writing input and output.
| * | Add forgotten commas between stringsDavid Corbett2014-08-081-1/+1
| |/
* | Added Nit Lexer to PygmentsR4PaSs2014-06-261-1/+42
|/
* Merged in krasul/pygments-main/swift (pull request #371)Tim Hatch2014-06-071-1/+4
|\ | | | | | | Initial Swift lexer
| * Add C++11 keywordsCalixte Denizet2014-05-301-1/+4
| |
* | Initial Swift lexerKashif Rasul2014-06-051-1/+42
|/
* Go allows unicode for identifiers.Tim Hatch2014-05-201-1/+3
| | | | Resolves #983
* Add token type Number.BinDavid Corbett2014-05-191-14/+15
|
* Apply default state transition in various lexers to avoid extra token generationGaurav Jain2014-05-181-38/+37
|
* Merged birkenfeld/pygments-main into defaultGaurav Jain2014-05-171-91/+96
|\
| * Replace a-z0-9_ with \w when IGNORECASE is setGaurav Jain2014-05-151-6/+6
| |
| * Overlap due to case insensitive modeGaurav Jain2014-05-151-9/+9
| |
| * Superfluous character class when only one charGaurav Jain2014-05-151-1/+1
| |
| * Replace all occurences of a-zA-Z0-9_ with \wGaurav Jain2014-05-141-18/+18
| |
| * Replace all occurences of [a-zA-Z0-9_] with \wGaurav Jain2014-05-141-33/+33
| |
| * Additional fixes to reduce line lengthGaurav Jain2014-05-121-3/+6
| |
| * Fixed incorrect replacement in compressed regex expressionsGaurav Jain2014-05-121-18/+18
| |
| * Fix some lines to be within 90 charactersGaurav Jain2014-05-121-23/+25
| | | | | | | | Some regular expressions has been simplified to use \w in order to reduce line length
* | Use default state transition to eliminate unecessary empty tokensGaurav Jain2014-04-291-2/+2
|/
* Merged in jaingaurav2/pygments-main-example-cleanup (pull request #337)Tim Hatch2014-04-291-4/+35
|\ | | | | | | Improvements to Objective-C lexer