mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
4566ce493a
Add some onEnterRules to Java language configuration to add the usual prefix (` * `) when inserting a new line in Javadoc. Those were actually copied from typescript language configuration which shares the same syntax for comments.
102 lines
1.8 KiB
JSON
102 lines
1.8 KiB
JSON
{
|
|
"comments": {
|
|
"lineComment": "//",
|
|
"blockComment": [ "/*", "*/" ]
|
|
},
|
|
"brackets": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"]
|
|
],
|
|
"autoClosingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
{ "open": "\"", "close": "\"", "notIn": ["string"] },
|
|
{ "open": "'", "close": "'", "notIn": ["string"] },
|
|
{ "open": "/**", "close": " */", "notIn": ["string"] }
|
|
],
|
|
"surroundingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["\"", "\""],
|
|
["'", "'"],
|
|
["<", ">"]
|
|
],
|
|
"folding": {
|
|
"markers": {
|
|
"start": "^\\s*//\\s*(?:(?:#?region\\b)|(?:<editor-fold\\b))",
|
|
"end": "^\\s*//\\s*(?:(?:#?endregion\\b)|(?:</editor-fold>))"
|
|
}
|
|
},
|
|
"onEnterRules": [
|
|
{
|
|
// e.g. /** | */
|
|
"beforeText": {
|
|
"pattern": "^\\s*/\\*\\*(?!/)([^\\*]|\\*(?!/))*$"
|
|
},
|
|
"afterText": {
|
|
"pattern": "^\\s*\\*/$"
|
|
},
|
|
"action": {
|
|
"indent": "indentOutdent",
|
|
"appendText": " * "
|
|
}
|
|
},
|
|
{
|
|
// e.g. /** ...|
|
|
"beforeText": {
|
|
"pattern": "^\\s*/\\*\\*(?!/)([^\\*]|\\*(?!/))*$"
|
|
},
|
|
"action": {
|
|
"indent": "none",
|
|
"appendText": " * "
|
|
}
|
|
},
|
|
{
|
|
// e.g. * ...|
|
|
"beforeText": {
|
|
"pattern": "^(\\t|[ ])*[ ]\\*([ ]([^\\*]|\\*(?!/))*)?$"
|
|
},
|
|
"previousLineText": {
|
|
"pattern": "(?=^(\\s*(/\\*\\*|\\*)).*)(?=(?!(\\s*\\*/)))"
|
|
},
|
|
"action": {
|
|
"indent": "none",
|
|
"appendText": "* "
|
|
}
|
|
},
|
|
{
|
|
// e.g. */|
|
|
"beforeText": {
|
|
"pattern": "^(\\t|[ ])*[ ]\\*/\\s*$"
|
|
},
|
|
"action": {
|
|
"indent": "none",
|
|
"removeText": 1
|
|
}
|
|
},
|
|
{
|
|
// e.g. *-----*/|
|
|
"beforeText": {
|
|
"pattern": "^(\\t|[ ])*[ ]\\*[^/]*\\*/\\s*$"
|
|
},
|
|
"action": {
|
|
"indent": "none",
|
|
"removeText": 1
|
|
}
|
|
},
|
|
{
|
|
"beforeText": {
|
|
"pattern": "^\\s*(\\bcase\\s.+:|\\bdefault:)$"
|
|
},
|
|
"afterText": {
|
|
"pattern": "^(?!\\s*(\\bcase\\b|\\bdefault\\b))"
|
|
},
|
|
"action": {
|
|
"indent": "indent"
|
|
}
|
|
}
|
|
]
|
|
}
|