summaryrefslogtreecommitdiff
path: root/pygments/lexers/other.py
Commit message (Collapse)AuthorAgeFilesLines
* Copyright year update.Georg Brandl2015-01-211-1/+1
|
* Remove the misc subpackage.Georg Brandl2014-09-201-7/+7
|
* reorganization of other.py, part 3/3Georg Brandl2014-09-191-544/+9
|
* reorganization of other.py, part 2Georg Brandl2014-09-191-2003/+87
|
* reorganization of other.py, part 1Georg Brandl2014-09-191-2036/+37
|
* Style change: use `1.0`and `0.0` instead of, respectively, `True` and ↵Paulo Moura2014-09-161-4/+4
| | | | `False` in the analyse_text() function.
* When analyzing, replace the too broad `:-` sequence by a regular expression ↵Paulo Moura2014-09-161-5/+6
| | | | matching directives.
* Added missing specific number tokens to the entity relation regular expressions.Paulo Moura2014-09-121-3/+3
|
* Add more specific number types for binary, octal, and hexadecimal syntaxes.Paulo Moura2014-09-121-3/+3
|
* Fix harmless comment layoutPaulo Moura2014-09-111-1/+1
|
* Updated Logtalk lexerPaulo Moura2014-09-111-47/+44
|
* Add "oneof" keyword to ProtoBufLexerBJ Neilsen2014-09-071-1/+1
| | | | | | [Protocol Buffers version 2.6][1] added a new union construct with the `oneof` keyword. [1]: https://groups.google.com/d/msg/protobuf/lvI8-sWZbUY/2_a8LVDMi5YJ
* Merged in dscorbett/pygments-numbers (pull request #364)Tim Hatch2014-05-201-8/+8
|\ | | | | | | Add token type Number.Bin
| * Add token type Number.BinDavid Corbett2014-05-191-8/+8
| |
* | Add 'emacs-lisp' alias to make org-mode happy.Tim Hatch2014-05-191-2/+2
|/ | | | Resolves #976
* Merged in jaingaurav2/pygments-main-c-cleanup (pull request #342)Tim Hatch2014-05-181-4/+4
|\ | | | | | | Add ability to specify default state transition
| * Apply default state transition in various lexers to avoid extra token generationGaurav Jain2014-05-181-4/+4
| |
* | Merged in spderosso/pygments-main (pull request #355)Tim Hatch2014-05-181-1/+59
|\ \ | |/ |/| | | Alloy (alloy.mit.edu) lexer
| * fixed bug in AlloyLexersperezde2014-05-171-1/+1
| |
| * Alloy (alloy.mit.edu) lexerSantiago Perez De Rosso2014-05-131-1/+59
| |
* | Merged in dietmarw/pygments-main (pull request #348)Tim Hatch2014-05-161-100/+108
|\ \ | | | | | | | | | Modelica-lexer: Add "end" to keyword list again
| * | Replace a-z0-9_ with \w when IGNORECASE is setGaurav Jain2014-05-151-6/+6
| | |
| * | Overlap due to case insensitive modeGaurav Jain2014-05-151-25/+25
| | |
| * | Overlap in character classGaurav Jain2014-05-151-1/+1
| | |
| * | Superfluous character class when only one charGaurav Jain2014-05-151-3/+3
| | |
| * | Replace addtional hidden occurences of a-zA-Z0-9_ with \wGaurav Jain2014-05-141-1/+1
| | |
| * | Replace all occurences of a-zA-Z0-9_ with \wGaurav Jain2014-05-141-13/+13
| | |
| * | Replace all occurences of [a-zA-Z0-9_] with \wGaurav Jain2014-05-141-48/+48
| | |
| * | Additional fixes to reduce line lengthGaurav Jain2014-05-121-9/+15
| | |
| * | Fix some lines to be within 90 charactersGaurav Jain2014-05-121-1/+3
| |/ | | | | | | Some regular expressions has been simplified to use \w in order to reduce line length
* | Merged birkenfeld/pygments-main into defaultDietmar Winkler2014-05-101-11/+317
|\ \ | |/
| * Comments handling fixed in Red language lexer as well.Oldes2014-05-051-8/+7
| |
| * FIX: Issue #985 - REBOL commentsOldes2014-05-051-8/+7
| |
| * .reb is now commonly used file extension for REBOL codeOldes2014-05-051-1/+1
| |
| * Converted tabs to spaces in the indentationOldes2014-04-291-1/+1
| |
| * Added missing possible space inside binary datatype and added some binary ↵Oldes2014-04-291-1/+1
| | | | | | | | tests into example code.
| * Changed version and removed unnecessary line.Oldes2014-04-291-3/+1
| |
| * Initial version of Red-language lexerOldes2014-04-291-1/+189
| |
| * Gherkin: Comments should only be matched on distinct linesGaurav Jain2014-04-271-1/+2
| | | | | | | | | | | | According to https://github.com/cucumber/cucumber/wiki/Gherkin, cooments are complete lines that can appear anywhere in the file and have leading whitespace. Added valid example file which was validated with 'cucumber -r -d tests/examplefiles/example.feature'
| * Fix PanLexer and TcshLexer to allow inline comments without whitespaceTim Hatch2014-04-241-2/+5
| |
| * Merged in jrha/pygments-main (pull request #179)Tim Hatch2014-04-241-1/+61
| |\ | | | | | | | | | | | | | | | Conflicts: pygments/lexers/_mapping.py pygments/lexers/other.py
| | * Correct patterns for paren and curly.James Adams2014-02-031-3/+2
| | | | | | | | | | | | Remove spurious pattern for variable.
| | * Re-add PanLexer after conflict resolutionJames Adams2014-02-031-1/+62
| | | | | | | | | | | | Regenerate _mapping
| * | Improve RslLexer -- line width, and anchoringTim Hatch2014-04-241-6/+17
| | |
| * | Merged in vuhonglinh/pygments-main (pull request #212)Tim Hatch2014-04-241-1/+48
| |\ \ | | | | | | | | | | | | | | | | | | | | Conflicts: pygments/lexers/_mapping.py pygments/lexers/other.py
| | * | Add RSL lexerLinh Vu Hong2013-06-231-1/+46
| | | |
* | | | Adds `end` to the list of keywords again.Dietmar Winkler2014-04-221-2/+2
|/ / / | | | | | | | | | | | | At the same time change the order of includes so that keywords are only parsed after "classes" and "functions".
* | | Merged in jaingaurav2/pygments-main-954 (pull request #323)Georg Brandl2014-04-221-1/+1
|\ \ \ | | | | | | | | | | | | Added handling of escaped single quotes in Puppet files
| * | | Added handling of escaped single quotes in Puppet filesGaurav Jain2014-04-151-1/+1
| | | |
* | | | Add "for" on the exclude list for highlighting class names.Dietmar Winkler2014-04-211-2/+3
| | | |