diff options
author | gbrandl <devnull@localhost> | 2006-10-24 19:50:35 +0200 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2006-10-24 19:50:35 +0200 |
commit | 9bbdbb7c9dbe9e8f0c227eee5da5846533a6f5c9 (patch) | |
tree | 5127676524e6bb9653ce6219b6a895e473c4418f /pygments/lexers/other.py | |
parent | cd6c4550cbc74c3723ea03c1380f67ac349962b4 (diff) | |
download | pygments-9bbdbb7c9dbe9e8f0c227eee5da5846533a6f5c9.tar.gz |
[svn] Add "bf" brainfuck alias.
Diffstat (limited to 'pygments/lexers/other.py')
-rw-r--r-- | pygments/lexers/other.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/other.py b/pygments/lexers/other.py index 0cd71056..de9f5ccc 100644 --- a/pygments/lexers/other.py +++ b/pygments/lexers/other.py @@ -126,7 +126,7 @@ class SqlLexer(RegexLexer): class BrainfuckLexer(RegexLexer): name = 'Brainfuck' - aliases = ['brainfuck'] + aliases = ['brainfuck', 'bf'] filenames = ['*.bf', '*.b'] tokens = { |