Skip to content

Commit dd33257

Browse files
committed
Fix bug with unnecessary autocompletion blade components when name doesn't match
Fixes N1ebieski#47
1 parent 39f6819 commit dd33257

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/bladeComponent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export const completionProvider: vscode.CompletionItemProvider = {
7373
pos.character,
7474
);
7575

76-
return linePrefix !== prefix;
76+
return linePrefix === prefix;
7777
});
7878

7979
if (!match) {

0 commit comments

Comments
 (0)