vscode/extensions/r/language-configuration.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
483 B
JSON
Raw Normal View History

2015-11-13 13:39:38 +00:00
{
"comments": {
"lineComment": "#"
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
2016-04-21 20:55:52 +00:00
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["`", "`"],
{ "open": "\"", "close": "\"", "notIn": ["string"] },
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
{ "open": "%", "close": "%", "notIn": ["string", "comment"] }
2016-04-21 20:55:52 +00:00
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["`", "`"],
["\"", "\""],
["'", "'"]
2015-11-13 13:39:38 +00:00
]
}