mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-28 21:55:54 +00:00
Having ` as an autoclosing pair makes typing fenced code blocks annoying https://github.com/Microsoft/vscode/pull/28172#issuecomment-306944985
41 lines
565 B
JSON
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": [
|
|
["(", ")"],
|
|
["[", "]"],
|
|
["`", "`"]
|
|
]
|
|
} |