aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexlua/tex.lua
diff options
context:
space:
mode:
authormitchell <unknown>2020-08-03 18:48:30 -0400
committermitchell <unknown>2020-08-03 18:48:30 -0400
commit7e647657b0f95a4756b8aa714b0b3e4295272b81 (patch)
treeaba57ef6f834d046fb0a0f19102418bf9f40652a /lexlua/tex.lua
parent79621db631f816c375b91edd2491bfe4b0aee5fa (diff)
downloadscintilla-mirror-7e647657b0f95a4756b8aa714b0b3e4295272b81.tar.gz
lexlua: Deprecated `lexer.fold_line_comments()` in favor of `lexer.fold_consecutive_lines()`.
Also use `lexer.fold_line_groups` for option that enables this folding, avoiding name clash that plagued the previous option. Added "import" folding for Java.
Diffstat (limited to 'lexlua/tex.lua')
-rw-r--r--lexlua/tex.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexlua/tex.lua b/lexlua/tex.lua
index 5dfb9ea0e..cf5f94d0f 100644
--- a/lexlua/tex.lua
+++ b/lexlua/tex.lua
@@ -27,7 +27,7 @@ lex:add_rule('command', token(lexer.KEYWORD, '\\' * (lexer.alpha^1 +
lex:add_rule('operator', token(lexer.OPERATOR, S('$&#{}[]')))
-- Fold points.
-lex:add_fold_point(lexer.COMMENT, '%', lexer.fold_line_comments('%'))
+lex:add_fold_point(lexer.COMMENT, lexer.fold_consecutive_lines('%'))
lex:add_fold_point('environment', '\\begin', '\\end')
lex:add_fold_point(lexer.OPERATOR, '{', '}')