mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
3b03189afa
* bring back grammar extensions
* fix hygiene
* Revert "pull themes from the marketplace"
This reverts commit 0738f76dac
.
32 lines
590 B
JSON
32 lines
590 B
JSON
{
|
|
"comments": {
|
|
"lineComment": "#"
|
|
},
|
|
"brackets": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"]
|
|
],
|
|
"autoClosingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
{ "open": "\"", "close": "\"", "notIn": ["string"] },
|
|
{ "open": "'", "close": "'", "notIn": ["string"] },
|
|
{ "open": "`", "close": "`", "notIn": ["string"] }
|
|
],
|
|
"surroundingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["\"", "\""],
|
|
["'", "'"],
|
|
["`", "`"]
|
|
],
|
|
"folding": {
|
|
"markers": {
|
|
"start": "^(?:(?:=pod\\s*$)|(?:\\s*#region\\b))",
|
|
"end": "^(?:(?:=cut\\s*$)|(?:\\s*#endregion\\b))"
|
|
}
|
|
}
|
|
}
|