We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0b29af4 + 2fed49c commit 71564f5Copy full SHA for 71564f5
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