This commit is contained in:
Maieul BOYER 2024-07-28 19:16:14 +02:00
parent c876fa5477
commit 93a752d30c
No known key found for this signature in database
3 changed files with 90 additions and 17 deletions

View file

@ -273,13 +273,10 @@ module.exports = grammar({
field('redr', $.file_redirect),
)),
field('name', $.command_name),
choice(
repeat(choice(
field('arg', $._literal),
field('arg', alias($._bare_dollar, '$')),
)),
$.subshell,
),
repeat(choice(
field('arg', $._literal),
field('arg', alias($._bare_dollar, $.word)),
)),
)),
command_name: $ => $._literal,