diff options
author | Martin Harriman <larvacea@mac.com> | 2011-09-27 17:04:05 -0700 |
---|---|---|
committer | Martin Harriman <larvacea@mac.com> | 2011-09-27 17:04:05 -0700 |
commit | 33bb5f7da698217cfcbf22b4e8ed5cf0841a5f66 (patch) | |
tree | 797eee591c110fe21ee44fa720750dc3185256f3 /pygments/lexers/_mapping.py | |
parent | 2a7deac5ab1e25650a5eb71b134e25bfb8f8be1d (diff) | |
download | pygments-33bb5f7da698217cfcbf22b4e8ed5cf0841a5f66.tar.gz |
SNOBOL4 lexer
Create a simple lexer for the SNOBOL4 language. The test suite (including
the new example.snobol examplefile) passes.
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 4772a9a0..7653e18b 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -204,6 +204,7 @@ LEXERS = { 'ScssLexer': ('pygments.lexers.web', 'SCSS', ('scss',), ('*.scss',), ('text/x-scss',)), 'SmalltalkLexer': ('pygments.lexers.other', 'Smalltalk', ('smalltalk', 'squeak'), ('*.st',), ('text/x-smalltalk',)), 'SmartyLexer': ('pygments.lexers.templates', 'Smarty', ('smarty',), ('*.tpl',), ('application/x-smarty',)), + 'SnobolLexer': ('pygments.lexers.snobol_lexer', 'Snobol', ('snobol',), ('*.snobol',), ()), 'SourcesListLexer': ('pygments.lexers.text', 'Debian Sourcelist', ('sourceslist', 'sources.list'), ('sources.list',), ()), 'SqlLexer': ('pygments.lexers.other', 'SQL', ('sql',), ('*.sql',), ('text/x-sql',)), 'SqliteConsoleLexer': ('pygments.lexers.other', 'sqlite3con', ('sqlite3',), ('*.sqlite3-console',), ('text/x-sqlite3-console',)), |