diff options
author | Noordsestern <5188411+Noordsestern@users.noreply.github.com> | 2020-06-15 21:21:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-15 21:21:52 +0200 |
commit | b7421f208b7c96510c9298f0b5b9e95bb313ff0d (patch) | |
tree | 587b1d2bece77ce00a7a66069c4cc7ee2f8f83e8 /pygments/lexers/robotframework.py | |
parent | 85b72d1aff96a7a90cd8907389c3363ad3d46cee (diff) | |
download | pygments-git-b7421f208b7c96510c9298f0b5b9e95bb313ff0d.tar.gz |
adding *task* to settings section
Diffstat (limited to 'pygments/lexers/robotframework.py')
-rw-r--r-- | pygments/lexers/robotframework.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pygments/lexers/robotframework.py b/pygments/lexers/robotframework.py index ad8f2ea0..9519018d 100644 --- a/pygments/lexers/robotframework.py +++ b/pygments/lexers/robotframework.py @@ -216,11 +216,11 @@ class Comment(Tokenizer): class Setting(Tokenizer): _tokens = (SETTING, ARGUMENT) _keyword_settings = ('suitesetup', 'suiteprecondition', 'suiteteardown', - 'suitepostcondition', 'testsetup', 'testprecondition', - 'testteardown', 'testpostcondition', 'testtemplate') + 'suitepostcondition', 'testsetup', 'tasksetup'. 'testprecondition', + 'testteardown','taskteardown', 'testpostcondition', 'testtemplate', 'tasktemplate') _import_settings = ('library', 'resource', 'variables') _other_settings = ('documentation', 'metadata', 'forcetags', 'defaulttags', - 'testtimeout') + 'testtimeout','tasktimeout') _custom_tokenizer = None def __init__(self, template_setter=None): |