From c1f4d3f68787fa2ae964c468d28a84df37319b28 Mon Sep 17 00:00:00 2001 From: orbitalquark <70453897+orbitalquark@users.noreply.github.com> Date: Wed, 18 Sep 2024 14:30:49 -0400 Subject: lexers: switch to tabs for indentation --- lua/lexers/tcl.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lua/lexers/tcl.lua') diff --git a/lua/lexers/tcl.lua b/lua/lexers/tcl.lua index 5552ed8..5d56e60 100644 --- a/lua/lexers/tcl.lua +++ b/lua/lexers/tcl.lua @@ -14,9 +14,9 @@ lex:add_rule('whitespace', token(lexer.WHITESPACE, lexer.space^1)) -- Comment. lex:add_rule('comment', token(lexer.COMMENT, lexer.to_eol('#' * P(function(input, index) - local i = index - 2 - while i > 0 and input:find('^[ \t]', i) do i = i - 1 end - if i < 1 or input:find('^[\r\n;]', i) then return true end + local i = index - 2 + while i > 0 and input:find('^[ \t]', i) do i = i - 1 end + if i < 1 or input:find('^[\r\n;]', i) then return true end end)))) -- Separator (semicolon). -- cgit v1.2.3