1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
-- Copyright 2006-2024 Mitchell. See LICENSE.
-- Plain TeX LPeg lexer.
-- Modified by Robert Gieseke.
local lexer = lexer
local P, S = lpeg.P, lpeg.S
local lex = lexer.new(...)
-- Comments.
lex:add_rule('comment', lex:tag(lexer.COMMENT, lexer.to_eol('%')))
-- TeX environments.
lex:add_rule('environment', lex:tag('environment', '\\' * (P('begin') + 'end') * lexer.word))
-- Commands.
lex:add_rule('command', lex:tag('command', '\\' * (lexer.alpha^1 + S('#$&~_^%{}'))))
-- Operators.
lex:add_rule('operator', lex:tag(lexer.OPERATOR, S('$&#{}[]')))
-- Fold points.
lex:add_fold_point('environment', '\\begin', '\\end')
lex:add_fold_point(lexer.OPERATOR, '{', '}')
lexer.property['scintillua.comment'] = '%'
return lex
|