| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
YAML scanners.
|
|
|
|
|
|
|
| |
* Unicode support (kind of)
* [from ...] import ... as construct highlighted as :include
* added a test case for import statements
|
|
|
|
|
|
|
|
| |
* class and method definitions are highlighted
* improved keyword argument recognition (less false positives)
* backticks are operators now
* from/import support still missing
|
|
|
|
|
| |
* @file=@ should not be recognized as the predefined method @file@.
|
|
|
|
|
|
|
|
| |
* fixed numeric literals
* better Python 3 support
* bugfixes, optimizations
* added two more test files
|
|
|
|
|
|
|
| |
* Python scanner uses it for idents.
* Scanner#column method needed to be fixed for multibyte characters because
StringScanner#pos still works on bytes.
|
|
* Based on pygment's implementation.
* The goal is to highlight both Python 2 and 3.
** print and exec will need special treatment.
* Still needs work; see TODOs in the code.
* Example files: PLEAC, pygments.
** The pygments.unistring code has very long lines which bother TextMate,
so I put this one in a separate file.
* Rating: 1 / 5 stars, "Poor support", because of problems with numeric literals.
* Added .py, .pyw and .py3 to FileType.
Else:
* Sorted lines in FileType::TypeFromExt.
|