From bb94e22d3423fe458de4bc9621379ddebb7fe7e3 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+orbitalquark@users.noreply.github.com> Date: Wed, 1 Oct 2025 12:30:00 +0200 Subject: 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. --- lua/lexers/ruby.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lua/lexers/ruby.lua') diff --git a/lua/lexers/ruby.lua b/lua/lexers/ruby.lua index 2927936..e1bb9be 100644 --- a/lua/lexers/ruby.lua +++ b/lua/lexers/ruby.lua @@ -80,7 +80,7 @@ lex:add_rule('symbol', lex:tag(lexer.STRING .. '.symbol', ':' * P(function(input end) * (word_char^1 + sq_str + dq_str))) -- Operators. -lex:add_rule('operator', lex:tag(lexer.OPERATOR, S('!%^&*()[]{}-=+/|:;.,?<>~'))) +lex:add_rule('operator', lex:tag(lexer.OPERATOR, P('...') + '..' + S('!%^&*()[]{}-=+/|:;.,?<>~'))) -- Fold points. local function disambiguate(text, pos, line, s) -- cgit v1.2.3