aboutsummaryrefslogtreecommitdiff
path: root/lua/lexers/gherkin.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/lexers/gherkin.lua')
-rw-r--r--lua/lexers/gherkin.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lexers/gherkin.lua b/lua/lexers/gherkin.lua
index 73c9e7d..d3ac376 100644
--- a/lua/lexers/gherkin.lua
+++ b/lua/lexers/gherkin.lua
@@ -12,7 +12,7 @@ lex:add_rule('whitespace', token(lexer.WHITESPACE, lexer.space^1))
-- Keywords.
lex:add_rule('keyword', token(lexer.KEYWORD, word_match(
- 'And Background But Examples Feature Given Outline Scenario Scenarios Then When')))
+ 'And Background But Examples Feature Given Outline Scenario Scenarios Then When')))
-- Strings.
local doc_str = lexer.range('"""')