vscode/extensions/java/language-configuration.json
2017-10-13 09:31:48 +02:00

34 lines
558 B
JSON

{
"comments": {
"lineComment": "//",
"blockComment": [ "/*", "*/" ]
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
{ "open": "/**", "close": " */", "notIn": ["string"] }
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["<", ">"]
],
"folding": {
"markers": {
"start": "^\\s*//\\s*(#?region\\b)|(<editor-fold\\b)",
"end": "^\\s*//\\s*(#?endregion\\b)|(</editor-fold>)"
}
}
}