aboutsummaryrefslogtreecommitdiff
path: root/lua/lexers/elm.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/lexers/elm.lua')
-rw-r--r--lua/lexers/elm.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lexers/elm.lua b/lua/lexers/elm.lua
index 8e8e911..f1a95b4 100644
--- a/lua/lexers/elm.lua
+++ b/lua/lexers/elm.lua
@@ -13,7 +13,7 @@ lex:add_rule('whitespace', token(lexer.WHITESPACE, lexer.space^1))
-- Keywords.
lex:add_rule('keyword', token(lexer.KEYWORD, word_match(
- 'if then else case of let in module import as exposing type alias port')))
+ 'if then else case of let in module import as exposing type alias port')))
-- Types & type constructors.
local word = (lexer.alnum + S("._'#"))^0