diff --git a/src/extension.ts b/src/extension.ts index 62f023516..39d5a32d8 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -800,6 +800,11 @@ function enableJavadocSymbols() { // e.g. *-----*/| beforeText: /^(\t|(\ \ ))*\ \*[^/]*\*\/\s*$/, action: { indentAction: IndentAction.None, removeText: 1 } + }, + { + // e.g. /// ...| (Markdown javadoc) + beforeText: /^\s*\/\/\/(.*)?$/, + action: { indentAction: IndentAction.None, appendText: '/// ' } } ] });