diff options
author | Larry Price <larry@industrialintellect.com> | 2013-11-29 13:14:32 -0800 |
---|---|---|
committer | Larry Price <larry@industrialintellect.com> | 2013-11-29 13:14:32 -0800 |
commit | feab9dcc24146e277742a905dcd0bbf042e4aee9 (patch) | |
tree | 2e22a68d41a4b5981a2f08b71d699e19ef0b1867 /pygments/lexers/_mapping.py | |
parent | 0e187dc6d5b3735c7fe82d79e6c2ceebeebc2d55 (diff) | |
download | pygments-feab9dcc24146e277742a905dcd0bbf042e4aee9.tar.gz |
Starting in on a lexer for the cypher graph query language.
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 207d3ea3..6b8379c7 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -79,6 +79,7 @@ LEXERS = { 'CssPhpLexer': ('pygments.lexers.templates', 'CSS+PHP', ('css+php',), (), ('text/css+php',)), 'CssSmartyLexer': ('pygments.lexers.templates', 'CSS+Smarty', ('css+smarty',), (), ('text/css+smarty',)), 'CudaLexer': ('pygments.lexers.compiled', 'CUDA', ('cuda', 'cu'), ('*.cu', '*.cuh'), ('text/x-cuda',)), + 'CypherLexer': ('pygments.lexers.cypher', 'Cypher', ('cyp','cypher'), ('*.cyp', '*.cypher'),('text/application-cypher',)), 'CythonLexer': ('pygments.lexers.compiled', 'Cython', ('cython', 'pyx', 'pyrex'), ('*.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',)), |