diff options
author | Tim Hatch <tim@timhatch.com> | 2014-10-14 22:53:47 -0700 |
---|---|---|
committer | Tim Hatch <tim@timhatch.com> | 2014-10-14 22:53:47 -0700 |
commit | 70fab11ec76811924a8d7784d9a7c87475767830 (patch) | |
tree | 8c0dca3bbab1eebaccf3798677fb3ff12d58b15f /pygments/lexers/_mapping.py | |
parent | a0f10d431548f956346a35a6facf8a9d2b75b1cb (diff) | |
download | pygments-70fab11ec76811924a8d7784d9a7c87475767830.tar.gz |
Add ResourceBundle lexer.
Fixes #1038
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 e3ab63f4..05929729 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -301,6 +301,7 @@ LEXERS = { 'RedLexer': ('pygments.lexers.rebol', 'Red', ('red', 'red/system'), ('*.red', '*.reds'), ('text/x-red', 'text/x-red-system')), 'RedcodeLexer': ('pygments.lexers.esoteric', 'Redcode', ('redcode',), ('*.cw',), ()), 'RegeditLexer': ('pygments.lexers.configs', 'reg', ('registry',), ('*.reg',), ('text/x-windows-registry',)), + 'ResourceLexer': ('pygments.lexers.resource', 'ResourceBundle', ('resource', 'resourcebundle', 'rb'), ('*.txt',), ()), 'RexxLexer': ('pygments.lexers.scripting', 'Rexx', ('rexx', 'arexx'), ('*.rexx', '*.rex', '*.rx', '*.arexx'), ('text/x-rexx',)), 'RhtmlLexer': ('pygments.lexers.templates', 'RHTML', ('rhtml', 'html+erb', 'html+ruby'), ('*.rhtml',), ('text/html+ruby',)), 'RobotFrameworkLexer': ('pygments.lexers.robotframework', 'RobotFramework', ('robotframework',), ('*.txt', '*.robot'), ('text/x-robotframework',)), |