platform/packages/vscode/angel_vscode/syntaxes/jael-language-configuration.json
Tobe O 24d8c0515d Add 'packages/vscode/' from commit '58c04d96c28dc5750e87520b36d526cd692ed2bc'
git-subtree-dir: packages/vscode
git-subtree-mainline: 0aca1c51de
git-subtree-split: 58c04d96c2
2020-02-15 18:28:59 -05:00

28 lines
820 B
JSON

{
"attribution-notice": {
"author-of-most-of-this-file": "Danny Tuppeny",
"source": "https://github.com/Dart-Code/Dart-Code/blob/master/syntaxes/dart.json"
},
"comments": {
"blockComment": ["<!--", "-->"]
},
"brackets": [["{", "}"], ["[", "]"], ["(", ")"], ["<", ">"]],
"autoClosingPairs": [
{ "open": "{", "close": "}" },
{ "open": "[", "close": "]" },
{ "open": "(", "close": ")" },
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
{ "open": "\"", "close": "\"", "notIn": ["string"] },
{ "open": "`", "close": "`", "notIn": ["string", "comment"] },
{ "open": "/**", "close": " */", "notIn": ["string"] }
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["<", ">"],
["'", "'"],
["\"", "\""],
["`", "`"]
]
}