We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e3f6d5 commit 983bbf1Copy full SHA for 983bbf1
src/services/completions.ts
@@ -832,7 +832,7 @@ namespace ts.Completions {
832
// */
833
const lineStart = getLineStartPositionForPosition(position, sourceFile);
834
// jsdoc tag will be listed if there is more than one whitespace after "*"
835
- const m = /^(?:\s*(?:[*\s]+(?=\s))?\s+|\s*\/\*\*\s+)(@)?$/.exec(
+ const m = /^\s*(?:[*\s]+(?=\s)|\/\*\*)?\s+(@)?$/.exec(
836
sourceFile.text.substring(lineStart, position)
837
);
838
if (m) {
0 commit comments