We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18d62c5 commit 1703572Copy full SHA for 1703572
1 file changed
src/lib/completions.ts
@@ -146,8 +146,9 @@ export default class Completions {
146
);
147
}
148
if (enableVariant) {
149
+ const prefix = this.processor.config('attributify.prefix');
150
completions = completions.concat(
- Object.keys(this.extension.variants).map(label => attrKey(label, CompletionItemKind.Module, 1))
151
+ Object.keys(this.extension.variants).map(label => attrKey(prefix ? prefix + label: label, CompletionItemKind.Module, 1))
152
153
154
return completions;
0 commit comments