31 lines
637 B
JSON
31 lines
637 B
JSON
{
|
|
"comments": {
|
|
"lineComment": "#"
|
|
},
|
|
// symbols used as brackets
|
|
"brackets": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["<", ">"],
|
|
],
|
|
// symbols that are auto closed when typing
|
|
"autoClosingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["<", ">"],
|
|
["\"", "\""],
|
|
["'", "'"],
|
|
["then", "\nend"],
|
|
["else", "\nend"]
|
|
],
|
|
// symbols that can be used to surround a selection
|
|
"surroundingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["\"", "\""],
|
|
["'", "'"]
|
|
]
|
|
} |