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 40bc23a commit f246bd3Copy full SHA for f246bd3
src/extension.ts
@@ -152,6 +152,7 @@ export async function activate(context: ExtensionContext): Promise<void> {
152
// Javascript based extensions
153
['typescriptreact', 'javascript', 'javascriptreact'].forEach((extension) => {
154
context.subscriptions.push(provideCompletionItemsGenerator(extension, /className=["|']([\w- ]*$)/));
155
+ context.subscriptions.push(provideCompletionItemsGenerator(extension, /class=["|']([\w- ]*$)/));
156
});
157
158
// HTML based extensions
0 commit comments