2017-05-09 19:13:37 +02:00
|
|
|
{
|
|
|
|
"comments": {
|
|
|
|
// symbol used for single line comment. Remove this entry if your language does not support line comments
|
2020-03-06 03:14:01 +01:00
|
|
|
"lineComment": ";"
|
2017-05-09 19:13:37 +02:00
|
|
|
},
|
|
|
|
// symbols used as brackets
|
|
|
|
"brackets": [
|
|
|
|
["{", "}"],
|
|
|
|
["[", "]"],
|
|
|
|
["(", ")"]
|
|
|
|
],
|
|
|
|
// symbols that are auto closed when typing
|
|
|
|
"autoClosingPairs": [
|
|
|
|
["{", "}"],
|
|
|
|
["[", "]"],
|
|
|
|
["(", ")"],
|
2020-03-06 03:14:01 +01:00
|
|
|
["\"", "\""]
|
2017-05-09 19:13:37 +02:00
|
|
|
],
|
2020-03-06 03:14:01 +01:00
|
|
|
// symbols that can be used to surround a selection
|
2017-05-09 19:13:37 +02:00
|
|
|
"surroundingPairs": [
|
|
|
|
["{", "}"],
|
|
|
|
["[", "]"],
|
|
|
|
["(", ")"],
|
2020-03-06 03:14:01 +01:00
|
|
|
["\"", "\""]
|
2017-05-09 19:13:37 +02:00
|
|
|
]
|
2020-03-06 03:14:01 +01:00
|
|
|
}
|