vue2-grammar/language-configuration.json

21 lines
594 B
JSON
Raw Normal View History

2019-11-26 14:02:14 +01:00
{
"comments": {
// symbol used for single line comment. Remove this entry if your language does not support line comments
2019-11-28 06:37:37 +01:00
// used here to allow quick commenting/uncommenting of lines.
"lineComment": "!",
2019-11-26 14:02:14 +01:00
},
2019-11-28 06:37:37 +01:00
// This works nicely.
"folding": {
"markers": {
"start": "^#BEGIN_COMP",
"end": "^#END_COMP"
}
},
// This is mostly for show.
2019-11-26 14:02:14 +01:00
"autoClosingPairs": [
2019-11-28 06:37:37 +01:00
["#BEGIN_COMP SC", "\n#END_COMP SC"],
["#BEGIN_COMP IH", "\n#END_COMP IH"],
["#BEGIN_COMP GM", "\n#END_COMP GM"],
2019-11-26 14:02:14 +01:00
],
2019-11-28 06:37:37 +01:00
}