diff options
author | gbrandl <devnull@localhost> | 2009-02-08 23:33:48 +0100 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2009-02-08 23:33:48 +0100 |
commit | 7d01c58da95d925844f0d5aa8f7f66d728aa85ec (patch) | |
tree | 6c69d44972b5ef6c45e47c26d578d1814bba2d5e /pygments/lexers/_mapping.py | |
parent | 03899cd9f6c1f69f601715509c684f1e0242ac8f (diff) | |
download | pygments-7d01c58da95d925844f0d5aa8f7f66d728aa85ec.tar.gz |
Add Cython lexer from the Cython docs repo.
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 64d57cda..e506c6c3 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -52,6 +52,7 @@ LEXERS = { 'CssLexer': ('pygments.lexers.web', 'CSS', ('css',), ('*.css',), ('text/css',)), 'CssPhpLexer': ('pygments.lexers.templates', 'CSS+PHP', ('css+php',), (), ('text/css+php',)), 'CssSmartyLexer': ('pygments.lexers.templates', 'CSS+Smarty', ('css+smarty',), (), ('text/css+smarty',)), + 'CythonLexer': ('pygments.lexers.compiled', 'Cython', ('cython', 'pyx'), ('*.pyx', '*.pxd', '*.pxi'), ('text/x-cython', 'application/x-cython')), 'DLexer': ('pygments.lexers.compiled', 'D', ('d',), ('*.d', '*.di'), ('text/x-dsrc',)), 'DObjdumpLexer': ('pygments.lexers.asm', 'd-objdump', ('d-objdump',), ('*.d-objdump',), ('text/x-d-objdump',)), 'DarcsPatchLexer': ('pygments.lexers.text', 'Darcs Patch', ('dpatch',), ('*.dpatch', '*.darcspatch'), ()), |