Open SimonCockx opened 1 month ago
The following works in VS Code, but does not work in Monaco.
repository: ruleA: include: '#ruleB' ruleB: match: '[a-zA-Z]+'
Note that ruleA directly includes ruleB.
ruleA
ruleB
Current workaround:
repository: ruleA: patterns: - include: '#ruleB' ruleB: match: '[a-zA-Z]+'
The following works in VS Code, but does not work in Monaco.
Note that
ruleA
directly includesruleB
.Current workaround: