Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| | | | | * | | | | | | | | | | | | | | Fixed multiline comments in cfscript. | Tyson | 2014-02-10 | 1 | -2/+3 | |
| | | | | | | | | | | | | | | | | | | | ||||||
| | | | | * | | | | | | | | | | | | | | Added separate lexer to handle CFC. It can handle both tag and script based ↵ | Tyson | 2014-02-07 | 2 | -7/+23 | |
| | | | | | |/ / / / / / / / / / / / | | | | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CFCs. | |||||
| | | | * | | | | | | | | | | | | | | Idris lexer: added lexer for literate Idris | raichoo | 2013-06-15 | 2 | -2/+29 | |
| | | | | | | | | | | | | | | | | | | ||||||
| | | | * | | | | | | | | | | | | | | Idris lexer: added lexer for Idris | raichoo | 2013-06-05 | 2 | -1/+109 | |
| | | | | |_|_|_|_|_|/ / / / / / / | | | | |/| | | | | | | | | | | | | ||||||
| | | * | | | | | | | | | | | | | | Cirru: add comma syntax | jiyinyiyong | 2014-02-17 | 1 | -0/+1 | |
| | | | |/ / / / / / / / / / / / | | | |/| | | | | | | | | | | | | ||||||
| | * | | | | | | | | | | | | | | Modelica: lexer fixes wrt quoted identifiers | Dietmar Winkler | 2014-02-08 | 1 | -4/+8 | |
| | |/ / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Classes with quoted identifiers were not correctly caught and neither were matrix specifiers. | |||||
| * | | | | | | | | | | | | | | 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 | 2 | -3/+15 | |
| |/ / / / / / / / / / / / / | ||||||
* | | | | | | | | | | | | | | Fix Makefile highlighting with target expansion | asylumfunk | 2014-03-02 | 1 | -2/+4 | |
|/ / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, when the lexer encounters a Makefile target specified with a variable, i.e. `$(VARIABLE_TARGET): prerequisite', it fails to properly highlight the remainder of the file. This happens as BaseMakefileLexer sees the `$' character, assumes it's shell code, and delegates to BashLexer. The remainder of the file is then mistakenly interpreted as shell code. This patch corrects this behavior and properly highlights entire Makefiles, regardless of target syntax. By specifying all shell-specific regular expressions AFTER all Makefile-specific regular expressions, we can ensure that the latter are given priority over the former. | |||||
* | | | | | | | | | | | | | Perl 6: Fix highlighting bug with m_... | Rob Hoelz | 2014-01-21 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Thanks to FROGGS++ on #perl6 | |||||
* | | | | | | | | | | | | | Perl 5: Accept 'our' as a Perl 5 declarator | Rob Hoelz | 2014-01-21 | 1 | -1/+1 | |
| | | | | | | | | | | | | | ||||||
* | | | | | | | | | | | | | Perl 5: Accept more forms of 'my' for Perl 5 declarations | Rob Hoelz | 2014-01-21 | 1 | -1/+1 | |
| | | | | | | | | | | | | | ||||||
* | | | | | | | | | | | | | Perl 6: Bump the Perl 6 rating if we've seen a class/module declaration | Rob Hoelz | 2014-01-21 | 1 | -1/+5 | |
| | | | | | | | | | | | | | ||||||
* | | | | | | | | | | | | | Perl 6: Continue to search for 'use v6' after class declarations | Rob Hoelz | 2014-01-21 | 1 | -2/+4 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If we haven't seen enough to convince us that a class/role/whatever declaration is a Perl 6 one, a 'use v6' could still be found below | |||||
* | | | | | | | | | | | | | Perl 6: Pick up on Perl 6-style class declarations | Rob Hoelz | 2014-01-21 | 1 | -1/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We recognize them as Perl 6 style if we've seen a Perl-style variable declaration or if it's preceded with a Perl-style scope modifier | |||||
* | | | | | | | | | | | | | Perl 6: Return a non-false fuzzy value if we found a Perl-style variable ↵ | Rob Hoelz | 2014-01-21 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | declaration | |||||
* | | | | | | | | | | | | | Perl 6: Use my/our/has as a hint | Rob Hoelz | 2014-01-20 | 1 | -1/+8 | |
| | | | | | | | | | | | | | ||||||
* | | | | | | | | | | | | | Perl 6: Make end-of-heredoc search more exact | Rob Hoelz | 2014-01-20 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Technically we need to start searching after the end of the heredoc terminator declaration, not the end of the quote word delimiter. It probably won't cause any problems in real world code, but it will probably reduce the number of WTFs generated while reading it. | |||||
* | | | | | | | | | | | | | Perl 6: Make sure we don't step back when looking for a closing delimiter | Rob Hoelz | 2014-01-20 | 1 | -0/+4 | |
| | | | | | | | | | | | | | ||||||
* | | | | | | | | | | | | | Merged birkenfeld/pygments-main into default | Rob Hoelz | 2014-01-20 | 1 | -22/+16 | |
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / / / |/| | | | | | | | | | | | | ||||||
| * | | | | | | | | | | | | Merged birkenfeld/pygments-main into default | Rob Hoelz | 2014-01-14 | 1 | -0/+2 | |
| |\ \ \ \ \ \ \ \ \ \ \ \ | ||||||
| * | | | | | | | | | | | | | Update comment for Perl 6 detector | Rob Hoelz | 2014-01-14 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | ||||||
| * | | | | | | | | | | | | | Include grammar declarations in Perl 6 detector | Rob Hoelz | 2014-01-14 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | ||||||
| * | | | | | | | | | | | | | Include enum declarations in the Perl 6 detector | Rob Hoelz | 2014-01-14 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | ||||||
| * | | | | | | | | | | | | | Look for module/role/class declarations | Rob Hoelz | 2014-01-14 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | ||||||
| * | | | | | | | | | | | | | Perl 6 detector: stop looking for indicators after first line of ↵ | Rob Hoelz | 2014-01-14 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | non-comment, non-whitespace, non-indicator code | |||||
| * | | | | | | | | | | | | | Match use v6; lines for Perl 6 detection | Rob Hoelz | 2014-01-14 | 1 | -2/+3 | |
| | | | | | | | | | | | | | | ||||||
| * | | | | | | | | | | | | | Match shebangs containing pugs for Perl 6 detector | Rob Hoelz | 2014-01-14 | 1 | -1/+10 | |
| | | | | | | | | | | | | | | ||||||
| * | | | | | | | | | | | | | Remove a lot of the custom logic from the Perl 6 detector | Rob Hoelz | 2014-01-14 | 1 | -24/+0 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I'm going to be stricter about compliance with the standards | |||||
| * | | | | | | | | | | | | | Re-enable Perl 6 detection | Rob Hoelz | 2014-01-14 | 1 | -3/+0 | |
| | | | | | | | | | | | | | | ||||||
| * | | | | | | | | | | | | | Reapply: Perform module/role/class check in Perl6 detection with a single regex | Rob Hoelz | 2014-01-12 | 1 | -5/+1 | |
| | | | | | | | | | | | | | | ||||||
| * | | | | | | | | | | | | | Reapply: Improve Perl 6 heuristic to check for member variables | Rob Hoelz | 2014-01-12 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | ||||||
| * | | | | | | | | | | | | | Reapply: Add a Perl 6 detection heuristic: my TYPE VAR | Rob Hoelz | 2014-01-12 | 1 | -1/+5 | |
| | | | | | | | | | | | | | | ||||||
| * | | | | | | | | | | | | | Reapply: Fix up special sub detector for Perl 6 heuristics | Rob Hoelz | 2014-01-12 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | ||||||
| * | | | | | | | | | | | | | Reapply: Add Perl 6 heuristic: check for special method names | Rob Hoelz | 2014-01-12 | 1 | -0/+2 | |
| | | | | | | | | | | | | | | ||||||
| * | | | | | | | | | | | | | Reapply: Include slurpy parameters in the Perl 6 detection heuristic | Rob Hoelz | 2014-01-12 | 1 | -0/+5 | |
| | |_|_|_|_|_|_|/ / / / / | |/| | | | | | | | | | | | ||||||
* | | | | | | | | | | | | | 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. | |||||
* | | | | | | | | | | | | | Next version will be 2.0. | Georg Brandl | 2014-01-19 | 8 | -19/+19 | |
| | | | | | | | | | | | | | ||||||
* | | | | | | | | | | | | | use versionadded directives | Georg Brandl | 2014-01-19 | 27 | -266/+293 | |
| | | | | | | | | | | | | | ||||||
* | | | | | | | | | | | | | New docs + website using Sphinx. | Georg Brandl | 2014-01-18 | 4 | -5/+158 | |
| | | | | | | | | | | | | | ||||||
* | | | | | | | | | | | | | Finalize single-source port for Py2.[67] and Py3.3+. | Georg Brandl | 2014-01-18 | 25 | -165/+196 | |
| | | | | | | | | | | | | | ||||||
* | | | | | | | | | | | | | manual prettifying and small fixes after futurize run | Georg Brandl | 2014-01-18 | 9 | -3/+12 | |
| | | | | | | | | | | | | | ||||||
* | | | | | | | | | | | | | futurizing: move to print_function and "except X as Y" syntax | Georg Brandl | 2014-01-18 | 12 | -89/+99 | |
| | | | | | | | | | | | | | ||||||
* | | | | | | | | | | | | | cirru: add to changelog | Georg Brandl | 2014-01-17 | 1 | -1/+4 | |
| | | | | | | | | | | | | |