diff options
author | Georg Brandl <georg@python.org> | 2013-01-09 16:13:53 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-01-09 16:13:53 +0100 |
commit | 49dc2316fa703bcef00dc0a97f3583f4d2c37fc4 (patch) | |
tree | b706c33ba9f064233f7d3ec71f30a6da7eec84af /pygments/lexers/_mapping.py | |
parent | 606ca306c4695106650bf2062dd835ff970a5a84 (diff) | |
download | pygments-49dc2316fa703bcef00dc0a97f3583f4d2c37fc4.tar.gz |
Closes #762: add Visual FoxPro 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 8a3f0eb5..ec8ee818 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -106,6 +106,7 @@ LEXERS = { 'FantomLexer': ('pygments.lexers.compiled', 'Fantom', ('fan',), ('*.fan',), ('application/x-fantom',)), 'FelixLexer': ('pygments.lexers.compiled', 'Felix', ('felix', 'flx'), ('*.flx', '*.flxh'), ('text/x-felix',)), 'FortranLexer': ('pygments.lexers.compiled', 'Fortran', ('fortran',), ('*.f', '*.f90', '*.F', '*.F90'), ('text/x-fortran',)), + 'FoxProLexer': ('pygments.lexers.foxpro', 'FoxPro', ('Clipper', 'XBase'), ('*.PRG', '*.prg'), ()), 'GLShaderLexer': ('pygments.lexers.compiled', 'GLSL', ('glsl',), ('*.vert', '*.frag', '*.geo'), ('text/x-glslsrc',)), 'GasLexer': ('pygments.lexers.asm', 'GAS', ('gas',), ('*.s', '*.S'), ('text/x-gas',)), 'GenshiLexer': ('pygments.lexers.templates', 'Genshi', ('genshi', 'kid', 'xml+genshi', 'xml+kid'), ('*.kid',), ('application/x-genshi', 'application/x-kid')), |