diff options
author | Tim Hatch <tim@timhatch.com> | 2012-10-06 17:29:58 -0700 |
---|---|---|
committer | Tim Hatch <tim@timhatch.com> | 2012-10-06 17:29:58 -0700 |
commit | f58735fc00d9e80f7d5a1210305c04af4ad6e3e6 (patch) | |
tree | 29262cd117830130be4ad61033dd4d97ba8d230c /pygments/lexers/_mapping.py | |
parent | c8b0ecf270ac7b361e5540154c4d276b0b5605f3 (diff) | |
download | pygments-f58735fc00d9e80f7d5a1210305c04af4ad6e3e6.tar.gz |
Add VGL Lexer (pull request #12)
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 a0301055..2d66aee4 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -251,6 +251,7 @@ LEXERS = { 'TexLexer': ('pygments.lexers.text', 'TeX', ('tex', 'latex'), ('*.tex', '*.aux', '*.toc'), ('text/x-tex', 'text/x-latex')), 'TextLexer': ('pygments.lexers.special', 'Text only', ('text',), ('*.txt',), ('text/plain',)), 'UrbiscriptLexer': ('pygments.lexers.other', 'UrbiScript', ('urbiscript',), ('*.u',), ('application/x-urbiscript',)), + 'VGLLexer': ('pygments.lexers.other', 'VGL', ('vgl',), ('*.rpf',), ()), 'ValaLexer': ('pygments.lexers.compiled', 'Vala', ('vala', 'vapi'), ('*.vala', '*.vapi'), ('text/x-vala',)), 'VbNetAspxLexer': ('pygments.lexers.dotnet', 'aspx-vb', ('aspx-vb',), ('*.aspx', '*.asax', '*.ascx', '*.ashx', '*.asmx', '*.axd'), ()), 'VbNetLexer': ('pygments.lexers.dotnet', 'VB.net', ('vb.net', 'vbnet'), ('*.vb', '*.bas'), ('text/x-vbnet', 'text/x-vba')), |