diff options
Diffstat (limited to 'lua/lexers/fennel.lua')
| -rw-r--r-- | lua/lexers/fennel.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lua/lexers/fennel.lua b/lua/lexers/fennel.lua index 3e5abbf..3303927 100644 --- a/lua/lexers/fennel.lua +++ b/lua/lexers/fennel.lua @@ -1,4 +1,4 @@ --- Copyright 2006-2022 Mitchell. See LICENSE. +-- Copyright 2006-2024 Mitchell. See LICENSE. -- Fennel LPeg lexer. -- Contributed by Momohime Honda. @@ -36,8 +36,10 @@ lex:modify_rule('string', token(lexer.STRING, dq_str + kw_str)) lex:modify_rule('comment', token(lexer.COMMENT, lexer.to_eol(';'))) -- Ignore these rules. -lex:modify_rule('longstring', P(false)) +-- lex:modify_rule('longstring', P(false)) lex:modify_rule('label', P(false)) lex:modify_rule('operator', P(false)) +lexer.property['scintillua.comment'] = ';' + return lex |
