platform/packages/vscode/angel_vscode/syntaxes/jael-language-configuration.json

29 lines
820 B
JSON
Raw Normal View History

2018-11-12 09:38:33 +00:00
{
"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": [
["{", "}"],
["[", "]"],
["(", ")"],
["<", ">"],
["'", "'"],
["\"", "\""],
["`", "`"]
]
}