mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 13:10:43 +00:00
3b03189afa
* bring back grammar extensions
* fix hygiene
* Revert "pull themes from the marketplace"
This reverts commit 0738f76dac
.
29 lines
455 B
JSON
29 lines
455 B
JSON
{
|
|
"comments": {
|
|
"lineComment": "@REM"
|
|
},
|
|
"brackets": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"]
|
|
],
|
|
"autoClosingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
{ "open": "\"", "close": "\"", "notIn": ["string"] }
|
|
],
|
|
"surroundingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["%", "%"],
|
|
["\"", "\""]
|
|
],
|
|
"folding": {
|
|
"markers": {
|
|
"start": "^\\s*(::|REM|@REM)\\s*#region",
|
|
"end": "^\\s*(::|REM|@REM)\\s*#endregion"
|
|
}
|
|
}
|
|
}
|