Files
vscode/extensions/powershell/language-configuration.json
Martin Aeschlimann cf70385df5 Folding regions broken
2017-10-12 16:55:15 +02:00

32 lines
538 B
JSON

{
"comments": {
"lineComment": "#",
"blockComment": [ "<#", "#>" ]
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
{ "open": "\"", "close": "\"", "notIn": ["string"]},
{ "open": "'", "close": "'", "notIn": ["string", "comment"]},
["/**", " */"]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
"folding": {
"markers": {
"start": "^\\s*#region\\b",
"end": "^\\s*#endregion\\b"
}
}
}