diff options
author | Jon Parise <jon@indelible.org> | 2010-12-14 00:22:21 -0800 |
---|---|---|
committer | Jon Parise <jon@indelible.org> | 2010-12-14 00:22:21 -0800 |
commit | 88850e2ecdcd89c6c133b9e8a945404fc3def37d (patch) | |
tree | 8d1994c2f6d5abe860e222e1fe36b25b2a74004c /pygments/lexers/_mapping.py | |
parent | d584af251c63006a42d316bd8fac177e998ca402 (diff) | |
download | pygments-88850e2ecdcd89c6c133b9e8a945404fc3def37d.tar.gz |
Adding a Protocol Buffer definition 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 500a69d7..8d73f959 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -153,6 +153,7 @@ LEXERS = { 'PovrayLexer': ('pygments.lexers.other', 'POVRay', ('pov',), ('*.pov', '*.inc'), ('text/x-povray',)), 'PrologLexer': ('pygments.lexers.compiled', 'Prolog', ('prolog',), ('*.prolog', '*.pro', '*.pl'), ('text/x-prolog',)), 'PropertiesLexer': ('pygments.lexers.text', 'Properties', ('properties',), ('*.properties',), ('text/x-java-properties',)), + 'ProtoBufLexer': ('pygments.lexers.other', 'Protocol Buffer', ('protobuf',), ('*.proto',), ()), 'Python3Lexer': ('pygments.lexers.agile', 'Python 3', ('python3', 'py3'), (), ('text/x-python3', 'application/x-python3')), 'Python3TracebackLexer': ('pygments.lexers.agile', 'Python 3.0 Traceback', ('py3tb',), ('*.py3tb',), ('text/x-python3-traceback',)), 'PythonConsoleLexer': ('pygments.lexers.agile', 'Python console session', ('pycon',), (), ('text/x-python-doctest',)), |