We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d5f3cd commit 6e64abdCopy full SHA for 6e64abd
packages/language-server/src/plugins/typescript/features/CompletionProvider.ts
@@ -400,7 +400,7 @@ export class CompletionsProviderImpl implements CompletionsProvider<CompletionRe
400
}
401
402
private mightBeAtStartTagWhitespace(document: Document, originalOffset: number) {
403
- return [' ', ' >', ' /'].includes(
+ return /\s[\s>/]/.test(
404
document.getText().substring(originalOffset - 1, originalOffset + 1)
405
);
406
0 commit comments