vscode/extensions/java/language-configuration.json

28 lines
406 B
JSON
Raw Normal View History

2015-11-13 13:39:38 +00:00
{
"comments": {
"lineComment": "//",
"blockComment": [ "/*", "*/" ]
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
2016-04-21 20:40:02 +00:00
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
2017-01-23 19:39:08 +00:00
["'", "'"],
{ "open": "/**", "close": " */", "notIn": ["string"] }
2016-04-21 20:40:02 +00:00
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["<", ">"]
2015-11-13 13:39:38 +00:00
]
2017-01-23 19:39:08 +00:00
}