aboutsummaryrefslogtreecommitdiff
path: root/lua/lexers/haskell.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/lexers/haskell.lua')
-rw-r--r--lua/lexers/haskell.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/lexers/haskell.lua b/lua/lexers/haskell.lua
index 0242423..374e51e 100644
--- a/lua/lexers/haskell.lua
+++ b/lua/lexers/haskell.lua
@@ -13,9 +13,9 @@ lex:add_rule('whitespace', token(lexer.WHITESPACE, lexer.space^1))
-- Keywords.
lex:add_rule('keyword', token(lexer.KEYWORD, word_match{
- 'case', 'class', 'data', 'default', 'deriving', 'do', 'else', 'if', 'import', 'in', 'infix',
- 'infixl', 'infixr', 'instance', 'let', 'module', 'newtype', 'of', 'then', 'type', 'where', '_',
- 'as', 'qualified', 'hiding'
+ 'case', 'class', 'data', 'default', 'deriving', 'do', 'else', 'if', 'import', 'in', 'infix',
+ 'infixl', 'infixr', 'instance', 'let', 'module', 'newtype', 'of', 'then', 'type', 'where', '_',
+ 'as', 'qualified', 'hiding'
}))
-- Types & type constructors.