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/context.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lua/lexers/context.lua') diff --git a/lua/lexers/context.lua b/lua/lexers/context.lua index 8ba2efc..e60f8c4 100644 --- a/lua/lexers/context.lua +++ b/lua/lexers/context.lua @@ -19,8 +19,8 @@ lex:add_rule('comment', token(lexer.COMMENT, lexer.to_eol('%'))) -- Sections. local wm_section = word_match{ - 'chapter', 'part', 'section', 'subject', 'subsection', 'subsubject', 'subsubsection', - 'subsubsubject', 'subsubsubsection', 'subsubsubsubject', 'title' + 'chapter', 'part', 'section', 'subject', 'subsection', 'subsubject', 'subsubsection', + 'subsubsubject', 'subsubsubsection', 'subsubsubsubject', 'title' } local section = token(lexer.CLASS, '\\' * startstop^-1 * wm_section) lex:add_rule('section', section) @@ -31,7 +31,7 @@ lex:add_rule('environment', environment) -- Commands. local command = token(lexer.KEYWORD, '\\' * - (lexer.alpha^1 * P('\\') * lexer.space^1 + lexer.alpha^1 + S('!"#$%&\',./;=[\\]_{|}~`^-'))) + (lexer.alpha^1 * P('\\') * lexer.space^1 + lexer.alpha^1 + S('!"#$%&\',./;=[\\]_{|}~`^-'))) lex:add_rule('command', command) -- Operators. -- cgit v1.2.3