aboutsummaryrefslogtreecommitdiff
path: root/lua/lexers/pure.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/lexers/pure.lua')
-rw-r--r--lua/lexers/pure.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/lexers/pure.lua b/lua/lexers/pure.lua
index 69067aa..e578d05 100644
--- a/lua/lexers/pure.lua
+++ b/lua/lexers/pure.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{
- 'namespace', 'with', 'end', 'using', 'interface', 'extern', 'let', 'const', 'def', 'type',
- 'public', 'private', 'nonfix', 'outfix', 'infix', 'infixl', 'infixr', 'prefix', 'postfix', 'if',
- 'otherwise', 'when', 'case', 'of', 'then', 'else'
+ 'namespace', 'with', 'end', 'using', 'interface', 'extern', 'let', 'const', 'def', 'type',
+ 'public', 'private', 'nonfix', 'outfix', 'infix', 'infixl', 'infixr', 'prefix', 'postfix', 'if',
+ 'otherwise', 'when', 'case', 'of', 'then', 'else'
}))
-- Identifiers.