diff options
author | Henri Binsztok <henri.binsztok@mlstate.com> | 2013-02-18 19:10:53 +0100 |
---|---|---|
committer | Henri Binsztok <henri.binsztok@mlstate.com> | 2013-02-18 19:10:53 +0100 |
commit | a59508049f66bef73e4e8990ae1ec85485489f46 (patch) | |
tree | ae6db02076b0e39623d8fe11f0d162ec0947fa07 | |
parent | 054c464c70c115f476608a51bb0b4a931d1fa400 (diff) | |
download | pygments-a59508049f66bef73e4e8990ae1ec85485489f46.tar.gz |
Opa: added keywords
-rw-r--r-- | pygments/lexers/functional.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/lexers/functional.py b/pygments/lexers/functional.py index a082811b..8c651e4e 100644 --- a/pygments/lexers/functional.py +++ b/pygments/lexers/functional.py @@ -1663,8 +1663,8 @@ class OpaLexer(RegexLexer): # but if you color only real keywords, you might just # as well not color anything keywords = [ - 'and', 'as', 'begin', 'css', 'database', 'db', 'do', 'else', 'end', - 'external', 'forall', 'if', 'import', 'match', 'package', 'parser', + 'and', 'as', 'begin', 'case', 'client', 'css', 'database', 'db', 'do', 'else', 'end', + 'external', 'forall', 'function', 'if', 'import', 'match', 'module', 'or', 'package', 'parser', 'rec', 'server', 'then', 'type', 'val', 'with', 'xml_parser', ] |