Skip to content

Commit 1ded13e

Browse files
Merge pull request #417 from N1ebieski:Fix-bug-with-unnecessary-autocompletion-blade-components-when-name-doesnt-match-#47
Fix bug with unnecessary autocompletion blade components when name doesn't match
2 parents 18d395f + dd33257 commit 1ded13e

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)