Skip to content

Commit 4ead9ab

Browse files
Ecmel ErcanEcmel Ercan
authored andcommitted
Fixes
1 parent d8ac1fb commit 4ead9ab

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/extension.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,7 @@ class ClassServer implements vsc.CompletionItemProvider {
129129
}
130130
}
131131

132-
let id = false;
133-
if (tag[0].startsWith('id')) {
134-
id = true;
135-
}
132+
let id = tag[0].startsWith('id');
136133
let ci: vsc.CompletionItem[] = [];
137134
for (let item in items) {
138135
if ((id && items[item].kind === hash) || !id && items[item].kind === dot) {

0 commit comments

Comments
 (0)