diff options
author | Alex Zimin <ziminav@gmail.com> | 2011-05-20 01:52:48 +0800 |
---|---|---|
committer | Alex Zimin <ziminav@gmail.com> | 2011-05-20 01:52:48 +0800 |
commit | 9140f695738b8c2ff6791926d4f190e252884d63 (patch) | |
tree | d17b92d9cf37186b8983e9523c3c6988513b51c2 /pygments/lexers/_mapping.py | |
parent | f6332d38fca8c2b1a8e45f123935a24127fe1a52 (diff) | |
download | pygments-9140f695738b8c2ff6791926d4f190e252884d63.tar.gz |
Add Nemerle lexer
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 ed23cbdb..503eb9f9 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -144,6 +144,7 @@ LEXERS = { 'MyghtyLexer': ('pygments.lexers.templates', 'Myghty', ('myghty',), ('*.myt', 'autodelegate'), ('application/x-myghty',)), 'MyghtyXmlLexer': ('pygments.lexers.templates', 'XML+Myghty', ('xml+myghty',), (), ('application/xml+myghty',)), 'NasmLexer': ('pygments.lexers.asm', 'NASM', ('nasm',), ('*.asm', '*.ASM'), ('text/x-nasm',)), + 'NemerleLexer': ('pygments.lexers.dotnet', 'Nemerle', ('nemerle',), ('*.n',), ('text/x-nemerle',)), 'NewspeakLexer': ('pygments.lexers.other', 'Newspeak', ('newspeak',), ('*.ns2',), ('text/x-newspeak',)), 'NginxConfLexer': ('pygments.lexers.text', 'Nginx configuration file', ('nginx',), (), ('text/x-nginx-conf',)), 'NumPyLexer': ('pygments.lexers.math', 'NumPy', ('numpy',), (), ()), |