vscode/extensions/shellscript/language-configuration.json

33 lines
562 B
JSON
Raw Normal View History

2015-11-13 14:39:38 +01:00
{
"comments": {
"lineComment": "#"
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
2016-04-21 22:49:45 +02:00
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
{ "open": "\"", "close": "\"", "notIn": ["string"] },
{ "open": "'", "close": "'", "notIn": ["string"] },
{ "open": "`", "close": "`", "notIn": ["string"] }
2016-04-21 22:49:45 +02:00
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["`", "`"]
2019-06-20 11:13:15 +02:00
],
"folding": {
"markers": {
"start": "^\\s*#\\s*#?region\\b.*",
"end": "^\\s*#\\s*#?endregion\\b.*"
}
}
}