diff options
author | thatch <devnull@localhost> | 2008-12-29 21:39:53 -0600 |
---|---|---|
committer | thatch <devnull@localhost> | 2008-12-29 21:39:53 -0600 |
commit | fb93fd1b0ba7ff893cbba82288c54fec63886345 (patch) | |
tree | a24c0b4eb2bdb56d47c8733acd86610a9f86851f /pygments/lexers/_mapping.py | |
parent | a4e647d0737c16f0ca2c9de64ebe5bb0ae62b87b (diff) | |
download | pygments-fb93fd1b0ba7ff893cbba82288c54fec63886345.tar.gz |
First draft of a Prolog 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 4db345e7..0bbe91bc 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -112,6 +112,7 @@ LEXERS = { 'PerlLexer': ('pygments.lexers.agile', 'Perl', ('perl', 'pl'), ('*.pl', '*.pm'), ('text/x-perl', 'application/x-perl')), 'PhpLexer': ('pygments.lexers.web', 'PHP', ('php', 'php3', 'php4', 'php5'), ('*.php', '*.php[345]'), ('text/x-php',)), 'PovrayLexer': ('pygments.lexers.other', 'POVRay', ('pov',), ('*.pov', '*.inc'), ('text/x-povray',)), + 'PrologLexer': ('pygments.lexers.compiled', 'prolog', ('plog',), ('*.prolog', '*.pro'), ('text/x-prolog',)), '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',)), |