diff options
Diffstat (limited to 'pygments/lexers/other.py')
-rw-r--r-- | pygments/lexers/other.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pygments/lexers/other.py b/pygments/lexers/other.py index 62654909..d4473ec4 100644 --- a/pygments/lexers/other.py +++ b/pygments/lexers/other.py @@ -144,6 +144,7 @@ class BrainfuckLexer(RegexLexer): name = 'Brainfuck' aliases = ['brainfuck', 'bf'] filenames = ['*.bf', '*.b'] + mimetypes = ['application/x-brainfuck'] tokens = { 'common': [ @@ -176,6 +177,7 @@ class BefungeLexer(RegexLexer): name = 'Befunge' aliases = ['befunge'] filenames = ['*.befunge'] + mimetypes = ['application/x-befunge'] tokens = { 'root': [ |