Skip to content

Commit

Permalink
fix(vscode): correct some things in bracket highlightning and coloring
Browse files Browse the repository at this point in the history
  • Loading branch information
d-biehl committed Mar 5, 2024
1 parent 097b607 commit 6c584dc
Show file tree
Hide file tree
Showing 3 changed files with 864 additions and 2,562 deletions.
12 changes: 0 additions & 12 deletions language-configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
},
// symbols used as brackets
"brackets": [
["${{", "}}"],
["&{{", "}}"],
["@{{", "}}"],
["${", "}"],
["@{", "}"],
["%{", "}"],
Expand All @@ -17,9 +14,6 @@
["(", ")"]
],
"colorizedBracketPairs": [
["${{", "}}"],
["&{{", "}}"],
["@{{", "}}"],
["${", "}"],
["@{", "}"],
["%{", "}"],
Expand All @@ -30,9 +24,6 @@
],
// symbols that are auto closed when typing
"autoClosingPairs": [
["${{", "}}"],
["&{{", "}}"],
["@{{", "}}"],
["${", "}"],
["@{", "}"],
["%{", "}"],
Expand All @@ -45,9 +36,6 @@
],
// symbols that can be used to surround a selection
"surroundingPairs": [
["${{", "}}"],
["&{{", "}}"],
["@{{", "}}"],
["${", "}"],
["@{", "}"],
["%{", "}"],
Expand Down
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -284,11 +284,13 @@
"keyword.modifier.bdd-prefix.robotframework"
],
"continuation": [
"punctuation.separator.continuation.robotframework"
"keyword.operator.continuation.robotframework"
],
"separator": [
"keyword.operator.terminator.robotframework"
],
"separator": [],
"terminator": [
"punctuation.terminator.robotframework"
"keyword.operator.terminator.robotframework"
],
"variableBegin": [
"punctuation.definition.variable.begin.robotframework"
Expand Down Expand Up @@ -343,7 +345,8 @@
"tokenTypes": {
"string.unquoted.argument.robotframework": "other",
"variable.expression.robotframework": "other"
}
},
"unbalancedBracketScopes": ["comment.robotframework", "comment"]
}
],
"keybindings": [
Expand Down
Loading

0 comments on commit 6c584dc

Please sign in to comment.