selemondev/vscode-shadcn-vue

shadcn suggestions prioritized over built-in emmet suggestions for e.g. 'div'

olemarius opened this issue ยท 2 comments

Describe the bug
When writing 'div' and hitting tab, I'm not getting tab but the alert snippet. Is there some way to put the suggstions after the built in emmet code completions ?

To Reproduce
Steps to reproduce the behavior:

  1. Type div and hit tab

Expected behavior
Getting

Screenshots
image

Additional context
Add any other context about the problem here.

Thanks @olemarius for opening this issue. I have reproduced the issue but everything works fine on my end. Maybe reloading the extensions might help ๐Ÿ˜„

Here are the screenshots:

Screenshot 2023-11-21 at 21 09 11 Screenshot 2023-11-21 at 21 09 16

Sorry, my bad! After looking at the code it didn't make sense that this should be different between our environments, so I did some digging and found that it's a vscode setting that I didn't know about ๐Ÿ˜…

"editor.snippetSuggestions": "top",

Removing this resolves the issue