mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 06:38:23 +00:00
644b6c6b56
Because Java comment syntax is not valid in Markdown.
38 lines
403 B
JSON
38 lines
403 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": [
|
|
[
|
|
"{",
|
|
"}"
|
|
],
|
|
[
|
|
"[",
|
|
"]"
|
|
],
|
|
[
|
|
"(",
|
|
")"
|
|
]
|
|
]
|
|
}
|