From 192d484892d60caab7c3cd795e3d305eed77a9b1 Mon Sep 17 00:00:00 2001 From: Uy Ha Date: Thu, 8 Apr 2021 00:23:48 +0200 Subject: [PATCH] Allow spaces before the first arguments --- grammar.js | 1 + 1 file changed, 1 insertion(+) diff --git a/grammar.js b/grammar.js index 939f9d4..ae1f529 100644 --- a/grammar.js +++ b/grammar.js @@ -22,6 +22,7 @@ module.exports = grammar({ $.identifier, repeat($.space), '(', + repeat($.seperation), optional($.arguments), ')' ),