diff options
| author | mitchell <70453897+orbitalquark@users.noreply.github.com> | 2025-10-01 12:30:00 +0200 |
|---|---|---|
| committer | Matěj Cepl <mcepl@cepl.eu> | 2025-11-28 03:10:24 +0100 |
| commit | bb94e22d3423fe458de4bc9621379ddebb7fe7e3 (patch) | |
| tree | e74abacfa6de8945caf62e7ca3a2eddbad378e93 /lua/lexers/ada.lua | |
| parent | 2c127cc425d8d01e865440d1fde598df9dc8471d (diff) | |
| download | vis-bb94e22d3423fe458de4bc9621379ddebb7fe7e3.tar.gz vis-bb94e22d3423fe458de4bc9621379ddebb7fe7e3.tar.xz | |
lua/lexers: synchronization with new release scintillua_6.6
Bugfixes:
- Fixed Pascal numeric literals.
- Fixed folding of HTML/XML comments and XML processing
instructions.
- Fixed incorrectly highlighting '..' range operators between
numbers.
Changes:
- Added Janet and todo.txt lexers.
- Updated Python lexer to recognize t-strings.
- Migrated ini and Dart lexers.
- Updated org lexer word lists.
Diffstat (limited to 'lua/lexers/ada.lua')
| -rw-r--r-- | lua/lexers/ada.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lexers/ada.lua b/lua/lexers/ada.lua index 77f8302..cd8f315 100644 --- a/lua/lexers/ada.lua +++ b/lua/lexers/ada.lua @@ -42,7 +42,7 @@ lex:add_rule('comment', token(lexer.COMMENT, lexer.to_eol('--'))) lex:add_rule('number', token(lexer.NUMBER, lexer.number_('_'))) -- Operators. -lex:add_rule('operator', token(lexer.OPERATOR, S(':;=<>&+-*/.()'))) +lex:add_rule('operator', token(lexer.OPERATOR, '..' + S(':;=<>&+-*/.()'))) lexer.property['scintillua.comment'] = '--' |
