diff options
author | Georg Brandl <georg@python.org> | 2013-01-10 22:08:47 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-01-10 22:08:47 +0100 |
commit | 9cb1d1bf01faebecd931a52624189866497309c6 (patch) | |
tree | 4cda4b0d77de288d0d4131ef323b86007ad98b9a /pygments/lexers/_mapping.py | |
parent | 77ba79b75a2660af2cfd8ae9a072b9d56ccd961d (diff) | |
parent | 2b9b06b9ef49e0d495fef410e78a7723ddbde9d5 (diff) | |
download | pygments-9cb1d1bf01faebecd931a52624189866497309c6.tar.gz |
Merged in waywardmonkeys/pygments-main (pull request #149: [dylan] Add DylanConsoleLexer.)
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 f3b711f4..e273734a 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -88,6 +88,7 @@ LEXERS = { 'DjangoLexer': ('pygments.lexers.templates', 'Django/Jinja', ('django', 'jinja'), (), ('application/x-django-templating', 'application/x-jinja')), 'DtdLexer': ('pygments.lexers.web', 'DTD', ('dtd',), ('*.dtd',), ('application/xml-dtd',)), 'DuelLexer': ('pygments.lexers.web', 'Duel', ('duel', 'Duel Engine', 'Duel View', 'JBST', 'jbst', 'JsonML+BST'), ('*.duel', '*.jbst'), ('text/x-duel', 'text/x-jbst')), + 'DylanConsoleLexer': ('pygments.lexers.compiled', 'Dylan session', ('dylan-console', 'dylan-repl'), ('*.dylan-console',), ('text/x-dylan-console',)), 'DylanLexer': ('pygments.lexers.compiled', 'Dylan', ('dylan',), ('*.dylan', '*.dyl', '*.intr'), ('text/x-dylan',)), 'DylanLidLexer': ('pygments.lexers.compiled', 'DylanLID', ('dylan-lid', 'lid'), ('*.lid', '*.hdp'), ('text/x-dylan-lid',)), 'ECLLexer': ('pygments.lexers.other', 'ECL', ('ecl',), ('*.ecl',), ('application/x-ecl',)), |