Skip to content

Commit 6c584dc

Browse files
committed
fix(vscode): correct some things in bracket highlightning and coloring
1 parent 097b607 commit 6c584dc

File tree

3 files changed

+864
-2562
lines changed

3 files changed

+864
-2562
lines changed

language-configuration.json

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
},
66
// symbols used as brackets
77
"brackets": [
8-
["${{", "}}"],
9-
["&{{", "}}"],
10-
["@{{", "}}"],
118
["${", "}"],
129
["@{", "}"],
1310
["%{", "}"],
@@ -17,9 +14,6 @@
1714
["(", ")"]
1815
],
1916
"colorizedBracketPairs": [
20-
["${{", "}}"],
21-
["&{{", "}}"],
22-
["@{{", "}}"],
2317
["${", "}"],
2418
["@{", "}"],
2519
["%{", "}"],
@@ -30,9 +24,6 @@
3024
],
3125
// symbols that are auto closed when typing
3226
"autoClosingPairs": [
33-
["${{", "}}"],
34-
["&{{", "}}"],
35-
["@{{", "}}"],
3627
["${", "}"],
3728
["@{", "}"],
3829
["%{", "}"],
@@ -45,9 +36,6 @@
4536
],
4637
// symbols that can be used to surround a selection
4738
"surroundingPairs": [
48-
["${{", "}}"],
49-
["&{{", "}}"],
50-
["@{{", "}}"],
5139
["${", "}"],
5240
["@{", "}"],
5341
["%{", "}"],

package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -284,11 +284,13 @@
284284
"keyword.modifier.bdd-prefix.robotframework"
285285
],
286286
"continuation": [
287-
"punctuation.separator.continuation.robotframework"
287+
"keyword.operator.continuation.robotframework"
288+
],
289+
"separator": [
290+
"keyword.operator.terminator.robotframework"
288291
],
289-
"separator": [],
290292
"terminator": [
291-
"punctuation.terminator.robotframework"
293+
"keyword.operator.terminator.robotframework"
292294
],
293295
"variableBegin": [
294296
"punctuation.definition.variable.begin.robotframework"
@@ -343,7 +345,8 @@
343345
"tokenTypes": {
344346
"string.unquoted.argument.robotframework": "other",
345347
"variable.expression.robotframework": "other"
346-
}
348+
},
349+
"unbalancedBracketScopes": ["comment.robotframework", "comment"]
347350
}
348351
],
349352
"keybindings": [

0 commit comments

Comments
 (0)