diff options
| author | Georg Brandl <georg@python.org> | 2013-01-09 12:57:31 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2013-01-09 12:57:31 +0100 |
| commit | 73a4b067b9ec07088e7c2e77e3f3c040aedcd50c (patch) | |
| tree | 1186c7bac8e758fe53c02ca1b5e077783c852263 /pygments/lexers/_mapping.py | |
| parent | 70c53efc63a3c01a2bc368fdf1c8e160678ee87f (diff) | |
| parent | 13c4e5e0d12ec25584970539146ce0389ff532d4 (diff) | |
| download | pygments-73a4b067b9ec07088e7c2e77e3f3c040aedcd50c.tar.gz | |
Merged in amacarthur/pygments-main (pull request #123: Added QML lexer)
Diffstat (limited to 'pygments/lexers/_mapping.py')
| -rw-r--r-- | pygments/lexers/_mapping.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/_mapping.py b/pygments/lexers/_mapping.py index dfef6ac2..bf22c90d 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -216,6 +216,7 @@ LEXERS = { 'PythonConsoleLexer': ('pygments.lexers.agile', 'Python console session', ('pycon',), (), ('text/x-python-doctest',)), 'PythonLexer': ('pygments.lexers.agile', 'Python', ('python', 'py', 'sage'), ('*.py', '*.pyw', '*.sc', 'SConstruct', 'SConscript', '*.tac', '*.sage'), ('text/x-python', 'application/x-python')), 'PythonTracebackLexer': ('pygments.lexers.agile', 'Python Traceback', ('pytb',), ('*.pytb',), ('text/x-python-traceback',)), + 'QmlLexer': ('pygments.lexers.web', 'QML', ('qml', 'Qt Meta Language', 'Qt modeling Language'), ('*.qml',), ('application/x-qml',)), 'RConsoleLexer': ('pygments.lexers.math', 'RConsole', ('rconsole', 'rout'), ('*.Rout',), ()), 'RPMSpecLexer': ('pygments.lexers.other', 'RPMSpec', ('spec',), ('*.spec',), ('text/x-rpm-spec',)), 'RacketLexer': ('pygments.lexers.functional', 'Racket', ('racket', 'rkt'), ('*.rkt', '*.rktl'), ('text/x-racket', 'application/x-racket')), @@ -325,4 +326,3 @@ if __name__ == '__main__': f.write('LEXERS = {\n %s,\n}\n\n' % ',\n '.join(found_lexers)) f.write(footer) f.close() - |
