summaryrefslogtreecommitdiff
path: root/pygments/lexers/agile.py
Commit message (Expand)AuthorAgeFilesLines
...
| | * 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
| | * | Handle '#' characters in regex quotesRob Hoelz2012-12-301-0/+3
| | * | Allow for ms/.../ and ss/.../.../ abbreviationsRob Hoelz2012-12-301-2/+2
| | * | Assume that Perl6 files are UTF-8, but allow overridingRob Hoelz2012-12-301-0/+4
| | * | Make rules for parsing adverbial forms more strictRob Hoelz2012-12-301-3/+3
| | * | Parse (regex|token|rule) using a state transitionRob Hoelz2012-12-301-16/+23
| | * | Allow for nested braces in regex/token/ruleRob Hoelz2012-12-261-4/+13
| | * | Add a special match case for methods that begin with 'm'Rob Hoelz2012-12-261-0/+1
| | * | Allow more flexible delimiters for m// and rx//Rob Hoelz2012-12-261-1/+1
| | * | Add better hilighting for regex/token/ruleRob Hoelz2012-12-261-0/+10
| | * | Add more syntax highlighting for special globalsRob Hoelz2012-12-261-0/+2
| | * | Add a na?ve rule for quote words <foo bar baz>Rob Hoelz2012-12-261-0/+1
| | * | Add support for s/// and tr/// formsRob Hoelz2012-12-261-0/+1
| | * | Add rx// formRob Hoelz2012-12-261-1/+1
| | * | Accept escaped slashes in regexesRob Hoelz2012-12-251-4/+4
| | * | Add primitive support for regexesRob Hoelz2012-12-251-0/+4
| | * | Add support for $<foo> (match variable shortcut)Rob Hoelz2012-12-241-0/+1
| | * | Add support for %hash<<key>>/%hash?key?Rob Hoelz2012-12-241-2/+2
| | * | Add support for %hash<key> syntaxRob Hoelz2012-12-241-2/+2
| | * | Hilight heredocsRob Hoelz2012-12-231-2/+13
| | * | Fix missing references to delimiter regex groupRob Hoelz2012-12-231-2/+2
| | * | Use named captures for brackets callbackRob Hoelz2012-12-231-3/+3
| | * | Be more flexible about string delimiter charactersRob Hoelz2012-12-231-21/+29
| | * | Add non-mirrored forms for string delimitersRob Hoelz2012-12-231-0/+1
| | * | Allow adverbs for bracketed stringsRob Hoelz2012-12-231-1/+1
| | * | Support nested of bracketing charactersRob Hoelz2012-12-231-12/+25
| | * | Clean up the bracketing callback a bitRob Hoelz2012-12-231-4/+7
| | * | Move bracketing stuff into common callback generatorRob Hoelz2012-12-231-24/+14
| | * | Allow the use of multiple bracketing characters for comments/stringsRob Hoelz2012-12-231-10/+10
| | * | Use str.find to locate end of comment/bracketed stringRob Hoelz2012-12-231-12/+10