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 d38f2e1 commit 3a504d4Copy full SHA for 3a504d4
src/extension.ts
@@ -50,10 +50,10 @@ export function activate(context: vscode.ExtensionContext) {
50
51
for (let key in fullToken) {
52
const value = String(fullToken[key as keyof typeof fullToken]);
53
- const item = new vscode.CompletionItem(`${key}: ${value}`, 11);
+ const item = new vscode.CompletionItem(`antd-${key}: ${value}`, 11);
54
item.insertText = key;
55
- item.filterText = key;
56
- item.sortText = key;
+ item.sortText = `a-${key}`;
+ item.filterText = `a-${key}`;
57
58
const colorSpan = genMarkdownString(value);
59
let documentContent: vscode.MarkdownString | string = "";
0 commit comments