diff options
author | mitchell <unknown> | 2020-08-03 18:48:30 -0400 |
---|---|---|
committer | mitchell <unknown> | 2020-08-03 18:48:30 -0400 |
commit | 7e647657b0f95a4756b8aa714b0b3e4295272b81 (patch) | |
tree | aba57ef6f834d046fb0a0f19102418bf9f40652a /lexlua/apdl.lua | |
parent | 79621db631f816c375b91edd2491bfe4b0aee5fa (diff) | |
download | scintilla-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/apdl.lua')
-rw-r--r-- | lexlua/apdl.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexlua/apdl.lua b/lexlua/apdl.lua index 148913c6c..06f79ba28 100644 --- a/lexlua/apdl.lua +++ b/lexlua/apdl.lua @@ -67,6 +67,6 @@ lex:add_rule('operator', token(lexer.OPERATOR, S('+-*/$=,;()'))) lex:add_fold_point(lexer.KEYWORD, '*if', '*endif') lex:add_fold_point(lexer.KEYWORD, '*do', '*enddo') lex:add_fold_point(lexer.KEYWORD, '*dowhile', '*enddo') -lex:add_fold_point(lexer.COMMENT, '!', lexer.fold_line_comments('!')) +lex:add_fold_point(lexer.COMMENT, lexer.fold_consecutive_lines('!')) return lex |