summaryrefslogtreecommitdiff
path: root/pygments/lexers/other.py
diff options
context:
space:
mode:
authorOldes <oldes.huhuman@gmail.com>2014-05-05 10:53:11 +0200
committerOldes <oldes.huhuman@gmail.com>2014-05-05 10:53:11 +0200
commit7f5d28f8df91a0529dadfa92ab377a90c1166ca5 (patch)
tree556c22d40b6e0e59087639b754e0faeb15c087bf /pygments/lexers/other.py
parentf16d0dbfaececc1b868c11355f4bca13e06dca53 (diff)
downloadpygments-7f5d28f8df91a0529dadfa92ab377a90c1166ca5.tar.gz
.reb is now commonly used file extension for REBOL code
Diffstat (limited to 'pygments/lexers/other.py')
-rw-r--r--pygments/lexers/other.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/other.py b/pygments/lexers/other.py
index 454f0e42..0bbf5b32 100644
--- a/pygments/lexers/other.py
+++ b/pygments/lexers/other.py
@@ -1380,7 +1380,7 @@ class RebolLexer(RegexLexer):
"""
name = 'REBOL'
aliases = ['rebol']
- filenames = ['*.r', '*.r3']
+ filenames = ['*.r', '*.r3', '*.reb']
mimetypes = ['text/x-rebol']
flags = re.IGNORECASE | re.MULTILINE