We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e62ee5 commit 809e22fCopy full SHA for 809e22f
language/syntaxes/expressions.tmGrammar.json
@@ -3,7 +3,7 @@
3
"injectionSelector": "L:source.github-actions-workflow",
4
"patterns": [
5
{
6
- "include": "#inline-expression"
+ "include": "#block-inline-expression"
7
},
8
9
"include": "#block-if-expression"
@@ -13,18 +13,15 @@
13
}
14
],
15
"repository": {
16
- "inline-expression": {
17
- "match": "[|-]?\\$\\{\\{(.*?)\\}\\}",
+ "block-inline-expression": {
18
"name": "meta.embedded.block.github-actions-expression",
19
- "captures": {
20
- "1": {
21
- "patterns": [
22
- {
23
- "include": "#expression"
24
- }
25
- ]
+ "begin": "[|-]?\\$\\{\\{",
+ "end": "\\}\\}",
+ "patterns": [
+ {
+ "include": "#expression"
26
27
+ ]
28
29
"block-if-expression": {
30
"contentName": "meta.embedded.block.github-actions-expression",
0 commit comments