vscode/extensions/python/language-configuration.json

26 lines
406 B
JSON
Raw Normal View History

2015-11-13 13:39:38 +00:00
{
"comments": {
"lineComment": "#",
"blockComment": [ "'''", "'''" ]
2015-11-13 13:39:38 +00:00
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
2015-11-13 13:39:38 +00:00
]
// enhancedBrackets: [ { open: /.*:\s*$/, closeComplete: 'else:' } ],
}