Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Go allows unicode for identifiers. | Tim Hatch | 2014-05-20 | 1 | -1/+3 |
| | | | | Resolves #983 | ||||
* | Add token type Number.Bin | David Corbett | 2014-05-19 | 1 | -14/+15 |
| | |||||
* | Apply default state transition in various lexers to avoid extra token generation | Gaurav Jain | 2014-05-18 | 1 | -38/+37 |
| | |||||
* | Merged birkenfeld/pygments-main into default | Gaurav Jain | 2014-05-17 | 1 | -91/+96 |
|\ | |||||
| * | Replace a-z0-9_ with \w when IGNORECASE is set | Gaurav Jain | 2014-05-15 | 1 | -6/+6 |
| | | |||||
| * | Overlap due to case insensitive mode | Gaurav Jain | 2014-05-15 | 1 | -9/+9 |
| | | |||||
| * | Superfluous character class when only one char | Gaurav Jain | 2014-05-15 | 1 | -1/+1 |
| | | |||||
| * | Replace all occurences of a-zA-Z0-9_ with \w | Gaurav Jain | 2014-05-14 | 1 | -18/+18 |
| | | |||||
| * | Replace all occurences of [a-zA-Z0-9_] with \w | Gaurav Jain | 2014-05-14 | 1 | -33/+33 |
| | | |||||
| * | Additional fixes to reduce line length | Gaurav Jain | 2014-05-12 | 1 | -3/+6 |
| | | |||||
| * | Fixed incorrect replacement in compressed regex expressions | Gaurav Jain | 2014-05-12 | 1 | -18/+18 |
| | | |||||
| * | Fix some lines to be within 90 characters | Gaurav Jain | 2014-05-12 | 1 | -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 tokens | Gaurav Jain | 2014-04-29 | 1 | -2/+2 |
|/ | |||||
* | Merged in jaingaurav2/pygments-main-example-cleanup (pull request #337) | Tim Hatch | 2014-04-29 | 1 | -4/+35 |
|\ | | | | | | | Improvements to Objective-C lexer | ||||
| * | Fixed typo in Carbon built-in regex | Gaurav Jain | 2014-04-28 | 1 | -1/+1 |
| | | | | | | | | Carbon builtin should not be prefixed with an @. Also changed the the \n to \b | ||||
| * | Change token for literal numbers, arrays and dictionaries from punctuation ↵ | Gaurav Jain | 2014-04-24 | 1 | -1/+27 |
| | | | | | | | | to literal | ||||
| * | Add support for boolean number syntax | Gaurav Jain | 2014-04-22 | 1 | -0/+1 |
| | | |||||
| * | Add some Carbon builtins | Gaurav Jain | 2014-04-22 | 1 | -0/+4 |
| | | |||||
| * | Include Name.Class when searching for builtins | Gaurav Jain | 2014-04-22 | 1 | -1/+1 |
| | | | | | | | | When a class extends a class, the parent class could be a builtin so it needs to be scanned in get_tokens_unprocessed() | ||||
| * | Add copy, atomic, release & class Objective-C keywords | Gaurav Jain | 2014-04-22 | 1 | -2/+2 |
| | | |||||
* | | Mark ':' in label as punctuation | Gaurav Jain | 2014-04-23 | 1 | -1/+1 |
| | | |||||
* | | Reorder regex expressions so that C keywords are matched before a label | Gaurav Jain | 2014-04-23 | 1 | -2/+1 |
|/ | | | | Keywords need to be matched before C labels to correctly handle the default keyword in switch/case blocks | ||||
* | Add support for kind paramter for integer and real types | Gaurav Jain | 2014-04-17 | 1 | -3/+3 |
| | | | | Integers and reals can have an optional kind parameter specified with an underscore. This could have the format of any variable name. Additionally added example file to demonstrate usage. | ||||
* | Merged in jaingaurav2/pygments-main (pull request #307) | Tim Hatch | 2014-04-14 | 1 | -0/+13 |
|\ | |||||
| * | Added support for iVar block parsing | Gaurav Jain | 2014-03-23 | 1 | -0/+13 |
| | | | | | | | | Ass seen with Issue #933, the lexer fails to identify methods as after parsing the @implementation keyword as it is still in the 'statement' state and methods are only parsed in the 'root' state. The block after the class name needs to have a seperate state similar to the 'function' state so that we return to the 'root' state after exiting the block. | ||||
* | | Merged in jaingaurav2/pygments-main (pull request #314) | Tim Hatch | 2014-04-14 | 1 | -7/+14 |
|\ \ | |||||
| * \ | Merged in biozic/pygments-main (pull request #294) | Tim Hatch | 2014-04-14 | 1 | -5/+12 |
| |\ \ | |||||
| | * | | Add missing keywords and special tokens to DLexer | Nicolas Sicard | 2014-03-06 | 1 | -5/+12 |
| | | | | |||||
| * | | | Merged in jaingaurav2/pygments-main (pull request #306) | Tim Hatch | 2014-04-14 | 1 | -2/+2 |
| |\ \ \ | |||||
| | * | | | Fix code formatting | Gaurav Jain | 2014-03-23 | 1 | -1/+1 |
| | | | | | |||||
| | * | | | Use correct RegEx expression for whitespace | Gaurav Jain | 2014-03-22 | 1 | -1/+1 |
| | | | | | |||||
| | * | | | Fixed previous commit to match whitespace seperately from variable name | Gaurav Jain | 2014-03-22 | 1 | -2/+2 |
| | | | | | |||||
| | * | | | Allow whitespace between type and name in method signature | Gaurav Jain | 2014-03-22 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | Improve handling of labels | Gaurav Jain | 2014-04-14 | 1 | -2/+2 |
|/ / / / | | | | | | | | | | | | | Allow labels to be followed by whitespace. Also remove the ':' from the label highlighting. | ||||
* | | | | Method marker should be colored as punctuation, not as a keyword | Gaurav Jain | 2014-03-23 | 1 | -1/+1 |
| |_|/ |/| | | |||||
* | | | Update and fix the Inform 6 lexer | David Corbett | 2014-03-16 | 1 | -13/+21 |
|/ / | |||||
* | | Detect Objective-C snippets if there is a NSNumber object | Gaurav Jain | 2014-03-14 | 1 | -0/+2 |
|/ | |||||
* | Fix a few non-Python3 compatible raw Unicode literals. | Georg Brandl | 2014-03-04 | 1 | -4/+4 |
| | |||||
* | Merged in micclly/pygments-main/add_mql_lexer (pull request #285) | Georg Brandl | 2014-03-04 | 1 | -1/+687 |
|\ | |||||
| * | Inform: versionadded, remove ".h" file glob, changelog entry. | Georg Brandl | 2014-03-04 | 1 | -1/+7 |
| | | |||||
| * | Add Inform lexers | David Corbett | 2014-01-31 | 1 | -1/+681 |
| | | |||||
* | | Splitted long lines | micclly | 2014-02-09 | 1 | -134/+268 |
| | | |||||
* | | Added MQL4 constants to MqlLexer | micclly | 2014-02-09 | 1 | -0/+297 |
| | | |||||
* | | Added MqlLexer | micclly | 2014-02-09 | 1 | -1/+12 |
|/ | |||||
* | Rust lexer: regex fix. | Georg Brandl | 2014-01-20 | 1 | -4/+4 |
| | |||||
* | Merged in octayn/pygments-main (pull request #270) | Georg Brandl | 2014-01-20 | 1 | -16/+63 |
|\ | | | | | | | Rust lexer: update to 0.9 | ||||
| * | Address more comments | Corey Richardson | 2014-01-20 | 1 | -2/+3 |
| | | |||||
| * | Address comments | Corey Richardson | 2014-01-19 | 1 | -7/+8 |
| | | |||||
| * | Rust: fix builtin types | Corey Richardson | 2014-01-07 | 1 | -1/+2 |
| | | |||||
| * | Rust lexer: update to 0.9 | Corey Richardson | 2014-01-07 | 1 | -17/+61 |
| | | | | | | | | | | The old lexer looked to be about 0.4 or 0.5. Notably, the lifetime and label syntax is properly handled, and macro invocation has been corrected. |