diff options
author | Georg Brandl <georg@python.org> | 2011-01-03 16:24:24 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-01-03 16:24:24 +0100 |
commit | 97bf57f80debc5c981812bdc773e21dfa609e9d8 (patch) | |
tree | 8d429215952bed7805d85069cf41d45be9876211 /pygments/lexers/_mapping.py | |
parent | 1692129e049d0f06340b1d3f325049e6a9f5c05d (diff) | |
parent | 88850e2ecdcd89c6c133b9e8a945404fc3def37d (diff) | |
download | pygments-97bf57f80debc5c981812bdc773e21dfa609e9d8.tar.gz |
merge with https://bitbucket.org/jparise/pygments-main/, adding ProtoBufLexer.
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 b288c60f..9e922f13 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -156,6 +156,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',)), |