How to disable Emmet in completion? #34946
-
Beta Was this translation helpful? Give feedback.
Answered by
NEKOYASAN
Jul 23, 2025
Replies: 1 comment
-
Ah... sorry I just found out that Emmet is bundled with svelte-language-server... I resolved below config "lsp": {
"svelte-language-server": {
"initialization_options": {
"configuration": {
"svelte": {
"plugin": {
"html": {
"completions": {
"emmet": false
}
},
"css": {
"completions": {
"emmet": false
}
}
}
}
}
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
NEKOYASAN
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ah... sorry
I just found out that Emmet is bundled with svelte-language-server...
https://github.com/sveltejs/language-tools/blob/master/packages/language-server/README.md
I resolved below config