diff options
author | Georg Brandl <georg@python.org> | 2010-01-01 20:00:29 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-01-01 20:00:29 +0100 |
commit | dfbda8243f3696245395c8a3f951c50db782c33c (patch) | |
tree | 898487ccc841a43ce890e3d26267a8042e3d438f /pygments/lexers/_mapping.py | |
parent | 728996fdd49c373c5c1185f20710d79d713456a3 (diff) | |
download | pygments-dfbda8243f3696245395c8a3f951c50db782c33c.tar.gz |
Add Asymptote lexer, by Olivier Guibe.
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 2265e76b..7e06831c 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -28,6 +28,7 @@ LEXERS = { 'AntlrRubyLexer': ('pygments.lexers.parsers', 'ANTLR With Ruby Target', ('antlr-ruby', 'antlr-rb'), ('*.G', '*.g'), ()), 'ApacheConfLexer': ('pygments.lexers.text', 'ApacheConf', ('apacheconf', 'aconf', 'apache'), ('.htaccess', 'apache.conf', 'apache2.conf'), ('text/x-apacheconf',)), 'AppleScriptLexer': ('pygments.lexers.other', 'AppleScript', ('applescript',), ('*.applescript',), ()), + 'AsymptoteLexer': ('pygments.lexers.other', 'Asymptote', ('asy',), ('*.asy',), ('text/x-asymptote',)), 'BBCodeLexer': ('pygments.lexers.text', 'BBCode', ('bbcode',), (), ('text/x-bbcode',)), 'BaseMakefileLexer': ('pygments.lexers.text', 'Makefile', ('basemake',), (), ()), 'BashLexer': ('pygments.lexers.other', 'Bash', ('bash', 'sh'), ('*.sh', '*.ebuild', '*.eclass'), ('application/x-sh', 'application/x-shellscript')), |