diff options
Diffstat (limited to 'lua/lexers/rhtml.lua')
| -rw-r--r-- | lua/lexers/rhtml.lua | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lua/lexers/rhtml.lua b/lua/lexers/rhtml.lua index 16c7706..c738dd9 100644 --- a/lua/lexers/rhtml.lua +++ b/lua/lexers/rhtml.lua @@ -1,20 +1,20 @@ --- Copyright 2006-2022 Mitchell. See LICENSE. +-- Copyright 2006-2024 Mitchell. See LICENSE. -- RHTML LPeg lexer. -local lexer = require('lexer') -local token, word_match = lexer.token, lexer.word_match +local lexer = lexer local P, S = lpeg.P, lpeg.S -local lex = lexer.new('rhtml', {inherit = lexer.load('html')}) +local lex = lexer.new(..., {inherit = lexer.load('html')}) -- Embedded Ruby. local ruby = lexer.load('rails') -local ruby_start_rule = token('rhtml_tag', '<%' * P('=')^-1) -local ruby_end_rule = token('rhtml_tag', '%>') +local ruby_start_rule = lex:tag(lexer.PREPROCESSOR, '<%' * P('=')^-1) +local ruby_end_rule = lex:tag(lexer.PREPROCESSOR, '%>') lex:embed(ruby, ruby_start_rule, ruby_end_rule) -lex:add_style('rhtml_tag', lexer.styles.embedded) -- Fold points. -lex:add_fold_point('rhtml_tag', '<%', '%>') +lex:add_fold_point(lexer.PREPROCESSOR, '<%', '%>') + +lexer.property['scintillua.comment'] = '<!--|-->' return lex |
