diff options
author | Sven Efftinge <sven@efftinge.de> | 2012-04-07 09:13:25 +0200 |
---|---|---|
committer | Sven Efftinge <sven@efftinge.de> | 2012-04-07 09:13:25 +0200 |
commit | 99e64fc2fdce7497ea4e5f6a63cd84effbfa26e2 (patch) | |
tree | 04fab5282312d9358a5bc1112ba0133a3b61b1ca /pygments/lexers/_mapping.py | |
parent | b70d989a1b9c06b62e816a65675402f8c44ab363 (diff) | |
download | pygments-99e64fc2fdce7497ea4e5f6a63cd84effbfa26e2.tar.gz |
Added lexer for Xtend http://xtend-lang.org
Diffstat (limited to 'pygments/lexers/_mapping.py')
-rw-r--r-- | pygments/lexers/_mapping.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pygments/lexers/_mapping.py b/pygments/lexers/_mapping.py index 8bcc1744..8002ecb7 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -250,6 +250,7 @@ LEXERS = { 'XmlPhpLexer': ('pygments.lexers.templates', 'XML+PHP', ('xml+php',), (), ('application/xml+php',)), 'XmlSmartyLexer': ('pygments.lexers.templates', 'XML+Smarty', ('xml+smarty',), (), ('application/xml+smarty',)), 'XsltLexer': ('pygments.lexers.web', 'XSLT', ('xslt',), ('*.xsl', '*.xslt'), ('application/xsl+xml', 'application/xslt+xml')), + 'XtendLexer': ('pygments.lexers.jvm', 'Xtend', ('xtend',), ('*.xtend',), ('text/x-xtend',)), 'YamlLexer': ('pygments.lexers.text', 'YAML', ('yaml',), ('*.yaml', '*.yml'), ('text/x-yaml',)), } |