aboutsummaryrefslogtreecommitdiff
path: root/lua/lexers/faust.lua
diff options
context:
space:
mode:
authororbitalquark <70453897+orbitalquark@users.noreply.github.com>2024-09-18 14:30:49 -0400
committerRandy Palamar <randy@rnpnr.xyz>2025-01-04 12:29:07 -0700
commitc1f4d3f68787fa2ae964c468d28a84df37319b28 (patch)
treedcd62bd74f8f9fd786cba6a0c248fb388d5244a8 /lua/lexers/faust.lua
parentcc18cea14d1f836abcebb84a96f5029431474255 (diff)
downloadvis-c1f4d3f68787fa2ae964c468d28a84df37319b28.tar.gz
vis-c1f4d3f68787fa2ae964c468d28a84df37319b28.tar.xz
lexers: switch to tabs for indentation
Diffstat (limited to 'lua/lexers/faust.lua')
-rw-r--r--lua/lexers/faust.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/lexers/faust.lua b/lua/lexers/faust.lua
index c338533..1889b82 100644
--- a/lua/lexers/faust.lua
+++ b/lua/lexers/faust.lua
@@ -12,9 +12,9 @@ lex:add_rule('whitespace', token(lexer.WHITESPACE, lexer.space^1))
-- Keywords.
lex:add_rule('keyword', token(lexer.KEYWORD, word_match{
- 'declare', 'import', 'mdoctags', 'dependencies', 'distributed', 'inputs', 'outputs', 'par', 'seq',
- 'sum', 'prod', 'xor', 'with', 'environment', 'library', 'component', 'ffunction', 'fvariable',
- 'fconstant', 'int', 'float', 'case', 'waveform', 'h:', 'v:', 't:'
+ 'declare', 'import', 'mdoctags', 'dependencies', 'distributed', 'inputs', 'outputs', 'par', 'seq',
+ 'sum', 'prod', 'xor', 'with', 'environment', 'library', 'component', 'ffunction', 'fvariable',
+ 'fconstant', 'int', 'float', 'case', 'waveform', 'h:', 'v:', 't:'
}))
-- Identifiers.