vscode/extensions/python/language-configuration.json
2017-10-11 17:28:10 +02:00

33 lines
599 B
JSON

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