diff options
Diffstat (limited to 'cli/lsp/language_server.rs')
-rw-r--r-- | cli/lsp/language_server.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/lsp/language_server.rs b/cli/lsp/language_server.rs index 4bbc7036f..6fa079bd8 100644 --- a/cli/lsp/language_server.rs +++ b/cli/lsp/language_server.rs @@ -1372,6 +1372,12 @@ impl Inner { css: maybe_workspace .map(|w| w.has_unstable("fmt-css")) .unwrap_or(false), + html: maybe_workspace + .map(|w| w.has_unstable("fmt-html")) + .unwrap_or(false), + component: maybe_workspace + .map(|w| w.has_unstable("fmt-component")) + .unwrap_or(false), yaml: maybe_workspace .map(|w| w.has_unstable("fmt-yaml")) .unwrap_or(false), |