Files
vscode/extensions/markdown/language-configuration.json
Matt Bierner 25458491eb Remove ` as autoclosing pair in markdown
Having ` as an autoclosing pair makes typing fenced code blocks annoying

https://github.com/Microsoft/vscode/pull/28172#issuecomment-306944985
2017-06-07 15:42:06 -07:00

41 lines
565 B
JSON

{
"comments": {
// symbols used for start and end a block comment. Remove this entry if your language does not support block comments
"blockComment": [
"<!--",
"-->"
]
},
// symbols used as brackets
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
{
"open": "{",
"close": "}"
},
{
"open": "[",
"close": "]"
},
{
"open": "(",
"close": ")"
},
{
"open": "<",
"close": ">",
"notIn": [
"string"
]
}
],
"surroundingPairs": [
["(", ")"],
["[", "]"],
["`", "`"]
]
}