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/ada.lua | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'lua/lexers/ada.lua') diff --git a/lua/lexers/ada.lua b/lua/lexers/ada.lua index 5cac26f..c33bc71 100644 --- a/lua/lexers/ada.lua +++ b/lua/lexers/ada.lua @@ -12,21 +12,21 @@ lex:add_rule('whitespace', token(lexer.WHITESPACE, lexer.space^1)) -- Keywords. lex:add_rule('keyword', token(lexer.KEYWORD, word_match({ - 'abort', 'abs', 'abstract', 'accept', 'access', 'aliased', 'all', 'and', 'array', 'at', 'begin', - 'body', 'case', 'constant', 'declare', 'delay', 'delta', 'digits', 'do', 'else', 'elsif', 'end', - 'entry', 'exception', 'exit', 'for', 'function', 'generic', 'goto', 'if', 'in', 'interface', 'is', - 'limited', 'loop', 'mod', 'new', 'not', 'null', 'of', 'or', 'others', 'out', 'overriding', - 'package', 'parallel', 'pragma', 'private', 'procedure', 'protected', 'raise', 'range', 'record', - 'rem', 'renames', 'requeue', 'return', 'reverse', 'select', 'separate', 'some', 'subtype', - 'synchronized', 'tagged', 'task', 'terminate', 'then', 'type', 'until', 'use', 'when', 'while', - 'with', 'xor', -- - 'true', 'false' + 'abort', 'abs', 'abstract', 'accept', 'access', 'aliased', 'all', 'and', 'array', 'at', 'begin', + 'body', 'case', 'constant', 'declare', 'delay', 'delta', 'digits', 'do', 'else', 'elsif', 'end', + 'entry', 'exception', 'exit', 'for', 'function', 'generic', 'goto', 'if', 'in', 'interface', 'is', + 'limited', 'loop', 'mod', 'new', 'not', 'null', 'of', 'or', 'others', 'out', 'overriding', + 'package', 'parallel', 'pragma', 'private', 'procedure', 'protected', 'raise', 'range', 'record', + 'rem', 'renames', 'requeue', 'return', 'reverse', 'select', 'separate', 'some', 'subtype', + 'synchronized', 'tagged', 'task', 'terminate', 'then', 'type', 'until', 'use', 'when', 'while', + 'with', 'xor', -- + 'true', 'false' }, true))) -- Types. lex:add_rule('type', token(lexer.TYPE, word_match({ - 'boolean', 'character', 'count', 'duration', 'float', 'integer', 'long_float', 'long_integer', - 'priority', 'short_float', 'short_integer', 'string' + 'boolean', 'character', 'count', 'duration', 'float', 'integer', 'long_float', 'long_integer', + 'priority', 'short_float', 'short_integer', 'string' }, true))) -- Identifiers. -- cgit v1.2.3