diff options
author | Brian Tiffin <btiffin@rogers.com> | 2012-05-20 02:06:32 -0400 |
---|---|---|
committer | Brian Tiffin <btiffin@rogers.com> | 2012-05-20 02:06:32 -0400 |
commit | 9f1b76dc61c9597696c7277857e661d32d60603f (patch) | |
tree | e0a42668ec5bc352bca43684b84da5897bcb8759 /pygments/lexers/_mapping.py | |
parent | 80b4af34b6a7c4b4ed3acd4e70da794318b187aa (diff) | |
download | pygments-9f1b76dc61c9597696c7277857e661d32d60603f.tar.gz |
adding an OpenCOBOL lexer
Diffstat (limited to 'pygments/lexers/_mapping.py')
-rw-r--r-- | pygments/lexers/_mapping.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pygments/lexers/_mapping.py b/pygments/lexers/_mapping.py index 8bcc1744..1b1c5c1d 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -45,6 +45,8 @@ LEXERS = { 'CLexer': ('pygments.lexers.compiled', 'C', ('c',), ('*.c', '*.h', '*.idc'), ('text/x-chdr', 'text/x-csrc')), 'CMakeLexer': ('pygments.lexers.text', 'CMake', ('cmake',), ('*.cmake', 'CMakeLists.txt'), ('text/x-cmake',)), 'CObjdumpLexer': ('pygments.lexers.asm', 'c-objdump', ('c-objdump',), ('*.c-objdump',), ('text/x-c-objdump',)), + 'COBOLLexer': ('pygments.lexers.compiled', 'cobol', ('cob',), ('*.cob', '*.COB', '*.cpy', '*.CPY'), ('text/x-cobol',)), + 'COBOLFreeLexer': ('pygments.lexers.compiled', 'cobolfree', ('cbl',), ('*.cbl', '*.CBL'), ('text/x-cobol',)), 'CSharpAspxLexer': ('pygments.lexers.dotnet', 'aspx-cs', ('aspx-cs',), ('*.aspx', '*.asax', '*.ascx', '*.ashx', '*.asmx', '*.axd'), ()), 'CSharpLexer': ('pygments.lexers.dotnet', 'C#', ('csharp', 'c#'), ('*.cs',), ('text/x-csharp',)), 'Cfengine3Lexer': ('pygments.lexers.other', 'CFEngine3', ('cfengine3', 'cf3'), ('*.cf',), ()), |