summaryrefslogtreecommitdiff
path: root/pygments
Commit message (Collapse)AuthorAgeFilesLines
...
* | This commit adds a lexer for linux kernel logs as outputted by `dmesg`martijn@msi.localhost2019-12-092-0/+60
| | | | | | | | | | | | | | | | It supports output from `dmesg`, in that case it highlights based on keywords in the line It can also highlight `dmesg -x` output. In that case it uses the loglevels from the kernel to highlight the lines.
* | tests: remove special skip cases for random_input test caseGeorg Brandl2019-12-093-4/+8
| |
* | Mosel: style fixes, add changelog entry etcGeorg Brandl2019-12-082-402/+408
| |
* | Update operators and punctuation. Reorder '::' and ':', remove redundant ↵J. C. Müller2019-12-081-2/+2
| | | | | | | | ':', remove '=='.
* | Add all functions of mmxprs, mmsystem and mmjobs.jcmuel2019-12-081-66/+342
| |
* | Add keywords, define types and operators. Remove parameters. Delete test ↵jcmuel2019-12-081-24/+25
| | | | | | | | file with incompatible license.
* | Add Mosel lexer.German Riano2019-12-082-0/+166
| |
* | Fix valid_name regex for SLexer (#1333)Georg Brandl2019-12-081-1/+1
|\ \ | | | | | | Fix valid_name regex for SLexer
| * | Fix valid_name regex for SLexerNikolay Korolev2019-12-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes #1331 All modifications to regex: 1. Delete 2 useless non-capturing groups 2. Variables can not start with underscore (_) 3. Only letters, dot (.) and underscore (_) can go after first dot (.) in name 4. Name from only one symbol dot (.) is possible
* | | Fixing parsing of numeric literalsgusthoff2019-12-061-1/+1
|/ / | | | | | | Reasoning: Ada allows formats such as 2#1111_0000# and 2#1111.0000#
* | More fixes to MATLAB lexer. (#1328)Georg Brandl2019-12-061-4/+5
|\ \ | | | | | | More fixes to MATLAB lexer.
| * | More fixes to MATLAB lexer.Antony Lee2019-12-061-4/+5
| | |
* | | Parse HTTP status-line even when reason-phrase not included. (#1322)Georg Brandl2019-12-061-3/+3
|\ \ \ | | | | | | | | Parse HTTP status-line even when reason-phrase not included.
| * | | Make the optional reason-phrase regexp group non-capturing.Jakub Roztocil2019-12-031-3/+3
| | | |
| * | | Parse HTTP status-line even when reason-phrase not included.Jakub Roztocil2019-12-021-2/+2
| | | | | | | | | | | | | | | | Background: https://github.com/jakubroztocil/httpie/issues/811
* | | | USD: post-merge nitsGeorg Brandl2019-12-062-78/+39
| | | |
* | | | Add USD lexer (#1290)Georg Brandl2019-12-063-0/+237
|\ \ \ \ | | | | | | | | | | Add USD lexer
| * | | | Added "r" prefix to an existing regex stringColin Kennedy2019-12-051-1/+1
| | | | |
| * | | | Separated different pieces of text into whitespace and punctuation and textColin Kennedy2019-12-051-2/+3
| | | | |
| * | | | Fixed numeric testColin Kennedy2019-12-051-1/+1
| | | | |
| * | | | Added scientific notation support for USD numbersColin Kennedy2019-12-051-1/+1
| | | | |
| * | | | Replaced all entries `Generic` with `Text` or `Punctuation`Colin Kennedy2019-12-041-8/+8
| | | | |
| * | | | Updated unittests to make sure outer-text-pair matches are not matched a ↵Colin Kennedy2019-12-041-3/+3
| | | | | | | | | | | | | | | | | | | | string types
| * | | | Removed trailing commaColin Kennedy2019-12-041-1/+1
| | | | |
| * | | | Removed unnecessary bars from regexColin Kennedy2019-12-041-1/+1
| | | | |
| * | | | Moved punctuation into a single regexColin Kennedy2019-12-041-11/+1
| | | | |
| * | | | Removed shebang lineColin Kennedy2019-12-041-5/+5
| | | | |
| * | | | Changed imports to import classes and functionsColin Kennedy2019-12-041-73/+75
| | | | |
| * | | | PR #1290 - @birkenfled note - Removed UsdLexer from compiled.pyColin Kennedy2019-12-041-1/+0
| | | | |
| * | | | Added `r` raw prefix to existing stringsColin Kennedy2019-12-011-4/+4
| | | | |
| * | | | Added r prefix to an existing stringColin Kennedy2019-12-011-1/+1
| | | | |
| * | | | Changed the special names of USD to the "Builtins" tokens, instead of ↵Colin Kennedy2019-12-011-1/+1
| | | | | | | | | | | | | | | | | | | | "Attribute" token
| * | | | Fixed issue where attributes were getting matched, even in USD metadataColin Kennedy2019-12-011-5/+12
| | | | |
| * | | | Added "elementSize" and "interpolation" as keywordsColin Kennedy2019-11-301-0/+2
| | | | |
| * | | | Removed + from USD number regexColin Kennedy2019-11-301-1/+1
| | | | |
| * | | | Changed the attribute regex to detect if "timeSamples" was authoredColin Kennedy2019-11-301-1/+9
| | | | |
| * | | | Got the `test_attribute` method to passColin Kennedy2019-11-301-15/+9
| | | | |
| * | | | Ran auto-fixers on usd.pyColin Kennedy2019-11-301-31/+36
| | | | |
| * | | | Improved the regex for finding USD attributesColin Kennedy2019-11-301-10/+27
| | | | |
| * | | | Fixed issue where array types weren't being defined properlyColin Kennedy2019-11-302-1/+1
| | | | |
| * | | | Re-arranged the logic for finding attributes to favor attribute declaration ↵Colin Kennedy2019-11-301-7/+38
| | | | | | | | | | | | | | | | | | | | more strongly
| * | | | Merged with master and resolved a minor merge conflict in languages.rstColin Kennedy2019-11-3016-80/+106
| |\ \ \ \
| * | | | | Bumped the versionadded tag from 2.5.0 to 2.6.0Colin Kennedy2019-11-301-1/+1
| | | | | |
| * | | | | Added regex matchers so that single quotes and double quotes work as-expectedColin Kennedy2019-11-301-0/+3
| | | | | |
| * | | | | Changed existing token rules to be more flexibleColin Kennedy2019-11-271-1/+2
| | | | | |
| * | | | | Updated docstrings to be more clearColin Kennedy2019-11-261-2/+2
| | | | | |
| * | | | | Added USD to supporting filesColin Kennedy2019-11-262-0/+2
| | | | | |
| * | | | | Added usd.py and _usd_builtins.pyColin Kennedy2019-11-262-0/+175
| | | | | |
* | | | | | Fix valid_name regex for SLexerNikolay Korolev2019-12-051-1/+1
| | | | | | | | | | | | | | | | | | This fixes #1329
* | | | | | Ride: minor detailsGeorg Brandl2019-12-031-1/+1
| | | | | |