vscode/extensions/restructuredtext/language-configuration.json

35 lines
645 B
JSON

{
"comments": {
"lineComment": ".."
},
"brackets": [
["(", ")"],
["<", ">"],
["[", "]"]
],
"surroundingPairs": [
["(", ")"],
["<", ">"],
["`", "`"],
["*", "*"],
["|", "|"],
["[", "]"]
],
"autoClosingPairs": [
{ "open": "(", "close": ")" },
{ "open": "<", "close": ">" },
{ "open": "'", "close": "'"},
{ "open": "`", "close": "`", "notIn": ["string"]},
{ "open": "\"", "close": "\""},
{ "open": "[", "close": "]"}
],
"autoCloseBefore": ":})>`\\n ",
"onEnterRules": [
{
"beforeText": "^\\s*\\.\\. *$|(?<!:)::(\\s|$)",
"action": { "indent": "indent" }
}
],
"wordPattern": "[\\w-]*\\w[\\w-]*"
}