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
.
35 lines
575 B
JSON
35 lines
575 B
JSON
{
|
|
"comments": {
|
|
"lineComment": "#"
|
|
},
|
|
"brackets": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"]
|
|
],
|
|
"autoClosingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["\"", "\""],
|
|
["'", "'"]
|
|
],
|
|
"surroundingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["\"", "\""],
|
|
["'", "'"]
|
|
],
|
|
"folding": {
|
|
"offSide": true,
|
|
"markers": {
|
|
"start": "^\\s*#\\s*region\\b",
|
|
"end": "^\\s*#\\s*endregion\\b"
|
|
}
|
|
},
|
|
"indentationRules": {
|
|
"increaseIndentPattern": "^\\s*.*(:|-) ?(&\\w+)?(\\{[^}\"']*|\\([^)\"']*)?$",
|
|
"decreaseIndentPattern": "^\\s+\\}$"
|
|
}
|
|
}
|