We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62448a6 commit 7ac2141Copy full SHA for 7ac2141
src/extension.ts
@@ -174,6 +174,11 @@ export async function activate(context: ExtensionContext): Promise<void> {
174
}
175
}));
176
177
+ // Enable Emmet Completion on startup if param is set to true
178
+ if (workspace.getConfiguration().get<boolean>("html-css-class-completion.enableEmmetSupport")) {
179
+ enableEmmetSupport(emmetDisposables);
180
+ }
181
+
182
// Javascript based extensions
183
["typescriptreact", "javascript", "javascriptreact"].forEach((extension) => {
184
context.subscriptions.push(provideCompletionItemsGenerator(extension, /className=["|']([\w- ]*$)/));
0 commit comments