summaryrefslogtreecommitdiff
path: root/pygments/lexers/agile.py
Commit message (Expand)AuthorAgeFilesLines
* Add missing attributions, changelog entries and versionadded tags.Georg Brandl2013-05-191-0/+2
* In Ruby, parse Foo::Bar as namespace, not hash key.Tim Hatch2013-05-091-1/+1
* Fix Python 3 traceback parsing to handle non-file lines.Tim Hatch2013-05-091-0/+3
* Merged in hoelzro/pygments-main (pull request #181)Tim Hatch2013-05-051-2/+362
|\
| * Move token rules into Perl6Lexer class bodyRob Hoelz2013-04-101-24/+19
| * Don't consume final character in token-sym-brackets stateRob Hoelz2013-04-101-1/+1
| * Remove extra space next to parenthesisRob Hoelz2013-04-101-48/+48
| * Favor backslash escaping regex metachars rather than creating a single charac...Rob Hoelz2013-04-101-11/+11
| * Automatically escape arguments to _build_word_matchRob Hoelz2013-04-101-3/+3
| * Make sure 'roleq' isn't improperly highlightedRob Hoelz2013-04-101-1/+1
| * Separate 'constants' and helper methods into separate sections for Perl 6 lexerRob Hoelz2013-04-101-7/+7
| * Move pygments lexer 'attributes' for Perl6 lexer directly below docstringRob Hoelz2013-04-101-7/+7
| * Rename PERL6_IDENTIFIER_CHARSRob Hoelz2013-04-101-13/+13
| * Make sure Perl 6 link works properlyRob Hoelz2013-04-101-1/+1
| * Improve file type detection for Perl 6Rob Hoelz2013-03-241-1/+33
| * Add more possible file extensions for the Perl 6 lexerRob Hoelz2013-03-241-1/+2
| * Make sure $/<...> worksRob Hoelz2013-03-241-2/+2
| * Remove useless look-aheadRob Hoelz2013-03-241-1/+1
| * Allow "multi-bracket" regexesRob Hoelz2013-03-241-1/+1
| * Parse token:sym correctlyRob Hoelz2013-03-241-2/+7
| * Allow mixed bracketing characters in special quoted stringsRob Hoelz2013-03-231-1/+1
| * Make sure that using mixed delimiters for block comments worksRob Hoelz2013-03-231-1/+1
| * Make sure that token identifiers followed by :sym are properly consumedRob Hoelz2013-03-221-1/+1
| * Make the :sym following a token identifer optionalRob Hoelz2013-03-221-1/+1
| * Enter a 'pre-token' state after seeing a token keyword (regex, token, or rule)Rob Hoelz2013-03-221-1/+6
| * Refactor most rules out into 'common' stateRob Hoelz2013-03-221-1/+4
| * Turn on the unicode flag for the Perl 6 lexerRob Hoelz2013-03-191-1/+1
| * Make sure that TYPE:D and TYPE:U are properly highlightedRob Hoelz2013-03-191-1/+2
| * Add the ability to attach optional prefixes/suffixes to word matchesRob Hoelz2013-03-191-4/+4
| * Make sure that words containing 'regex' aren't highlighted as a keywordRob Hoelz2013-03-191-1/+1
| * Match things like token token_name:sym<{ }>Rob Hoelz2013-03-191-1/+1
| * Add rules for highlighting other forms of PodRob Hoelz2013-03-191-1/+3
| * Deal with a special case role name from the Perl 6 grammarRob Hoelz2013-03-181-0/+2
| * Use STD's list of opening/closing characters instead of our own generated listRob Hoelz2013-03-111-31/+30
| * Store bracketing characters in a hash rather than two parallel stringsRob Hoelz2013-03-111-49/+59
| * Remove "ask #perl6" commentsRob Hoelz2013-03-071-2/+2
| * Lay opening/closing bracket characters out in a more reader-friendly mannerRob Hoelz2013-03-071-2/+42
| * Make sure eq (and others) are parsed as operatorsRob Hoelz2013-03-061-2/+2
| * Fix highlighting of $!variableRob Hoelz2013-01-281-1/+1
| * Merged birkenfeld/pygments-main into defaultRobert Hoelz2013-01-281-4/+6
| |\
| * | Treat / as the start of a regex if it follows a commaRob Hoelz2013-01-021-1/+1
| * | Simplify regex detection rulesRob Hoelz2013-01-021-2/+1
| * | Allow - before character classesRob Hoelz2013-01-021-1/+1
| * | Handle extensible metasyntax in regexes betterRob Hoelz2013-01-011-1/+1
| * | Make sure that multiple quote words are supported for $/Rob Hoelz2013-01-011-1/+1
| * | Fix chains of bareword hash accessesRob Hoelz2012-12-311-2/+2
| * | Process opening braces speciallyRob Hoelz2012-12-301-5/+31
| * | Don't treat escaped quotes as string startersRob Hoelz2012-12-301-2/+2
| * | Treat <= as an operator, rather than starting a word quote (<...>)Rob Hoelz2012-12-301-1/+1
| * | Handle quote characters in regex character classesRob Hoelz2012-12-301-0/+2