Add angle brackets (<>) to brackets, autoClosingPairs, and surroundingPairs for better editing of types like tensor<3xf32>. Also add colorizedBracketPairs for visual distinction between nested bracket types.
32 lines
545 B
JSON
32 lines
545 B
JSON
{
|
|
"comments": {
|
|
"lineComment": "//"
|
|
},
|
|
"brackets": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["<", ">"]
|
|
],
|
|
"colorizedBracketPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["<", ">"]
|
|
],
|
|
"autoClosingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["<", ">"],
|
|
["\"", "\""]
|
|
],
|
|
"surroundingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["<", ">"],
|
|
["\"", "\""]
|
|
]
|
|
}
|