aboutsummaryrefslogtreecommitdiff
path: root/lua/lexers/gap.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/lexers/gap.lua')
-rw-r--r--lua/lexers/gap.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/lexers/gap.lua b/lua/lexers/gap.lua
index 444a0f6..686d6c1 100644
--- a/lua/lexers/gap.lua
+++ b/lua/lexers/gap.lua
@@ -12,9 +12,9 @@ lex:add_rule('whitespace', token(lexer.WHITESPACE, lexer.space^1))
-- Keywords.
lex:add_rule('keyword', token(lexer.KEYWORD, word_match{
- 'and', 'break', 'continue', 'do', 'elif', 'else', 'end', 'fail', 'false', 'fi', 'for', 'function',
- 'if', 'in', 'infinity', 'local', 'not', 'od', 'or', 'rec', 'repeat', 'return', 'then', 'true',
- 'until', 'while'
+ 'and', 'break', 'continue', 'do', 'elif', 'else', 'end', 'fail', 'false', 'fi', 'for', 'function',
+ 'if', 'in', 'infinity', 'local', 'not', 'od', 'or', 'rec', 'repeat', 'return', 'then', 'true',
+ 'until', 'while'
}))
-- Identifiers.