diff options
author | Georg Brandl <georg@python.org> | 2014-03-04 15:39:22 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-03-04 15:39:22 +0100 |
commit | 1cfc8a1cfd380392b9a41a4d9468da034ab752d0 (patch) | |
tree | 552a0da55f0fb24f193512ae64f9896230907c81 /pygments/lexers/_mapping.py | |
parent | 9e62554ada8aa1694457cb2f06d6d8379acee2d9 (diff) | |
parent | e586af749ada23b13410cffceeb5c8de9f7903bd (diff) | |
download | pygments-1cfc8a1cfd380392b9a41a4d9468da034ab752d0.tar.gz |
Merged in dscorbett/pygments-main (pull request #281)
Add Inform lexers
Diffstat (limited to 'pygments/lexers/_mapping.py')
-rw-r--r-- | pygments/lexers/_mapping.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pygments/lexers/_mapping.py b/pygments/lexers/_mapping.py index 68ca5fd6..594040a5 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -146,6 +146,9 @@ LEXERS = { 'IDLLexer': ('pygments.lexers.math', 'IDL', ('idl',), ('*.pro',), ('text/idl',)), 'IdrisLexer': ('pygments.lexers.functional', 'Idris', ('idris', 'idr'), ('*.idr',), ('text/x-idris',)), 'IgorLexer': ('pygments.lexers.math', 'Igor', ('igor', 'igorpro'), ('*.ipf',), ('text/ipf',)), + 'Inform6Lexer': ('pygments.lexers.compiled', 'Inform 6', ('inform6', 'i6'), ('*.inf', '*.h'), ()), + 'Inform6TemplateLexer': ('pygments.lexers.compiled', 'Inform 6 template', ('i6t',), ('*.i6t',), ()), + 'Inform7Lexer': ('pygments.lexers.compiled', 'Inform 7', ('inform7', 'i7'), ('*.ni', '*.i7x'), ()), 'IniLexer': ('pygments.lexers.text', 'INI', ('ini', 'cfg', 'dosini'), ('*.ini', '*.cfg'), ('text/x-ini',)), 'IoLexer': ('pygments.lexers.agile', 'Io', ('io',), ('*.io',), ('text/x-iosrc',)), 'IokeLexer': ('pygments.lexers.jvm', 'Ioke', ('ioke', 'ik'), ('*.ik',), ('text/x-iokesrc',)), |