Universal-Assembly-Syntax-H.../language-configuration.json

32 lines
532 B
JSON
Raw Permalink Normal View History

2024-10-13 01:55:24 +03:00
{
"comments": {
2024-10-13 05:50:58 +03:00
"lineComment": ";",
"blockComment": ["/*", "*/"]
2024-10-13 01:55:24 +03:00
},
"brackets": [
2024-10-13 05:50:58 +03:00
["{", "}"],
["[", "]"],
["(", ")"]
2024-10-13 01:55:24 +03:00
],
"autoClosingPairs": [
2024-10-13 05:50:58 +03:00
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
2024-10-13 01:55:24 +03:00
],
"surroundingPairs": [
2024-10-13 05:50:58 +03:00
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
"folding": {
"markers": {
"start": "\\.section",
"end": "\\.endsection"
}
}
}