diff --git a/book/src/generated/lang-support.md b/book/src/generated/lang-support.md index 8a8c9fa83..f035b5ec5 100644 --- a/book/src/generated/lang-support.md +++ b/book/src/generated/lang-support.md @@ -87,7 +87,7 @@ | hocon | ✓ | ✓ | ✓ | | | hoon | ✓ | | | | | hosts | ✓ | | | | -| html | ✓ | | | `vscode-html-language-server` | +| html | ✓ | | | `vscode-html-language-server`, `superhtml` | | hurl | ✓ | ✓ | ✓ | | | hyprlang | ✓ | | ✓ | | | idris | | | | `idris2-lsp` | diff --git a/languages.toml b/languages.toml index 2c2da34d6..ed3f89660 100644 --- a/languages.toml +++ b/languages.toml @@ -94,6 +94,7 @@ solc = { command = "solc", args = ["--lsp"] } sourcekit-lsp = { command = "sourcekit-lsp" } svlangserver = { command = "svlangserver", args = [] } swipl = { command = "swipl", args = [ "-g", "use_module(library(lsp_server))", "-g", "lsp_server:main", "-t", "halt", "--", "stdio" ] } +superhtml = { command = "superhtml", args = ["lsp"]} tailwindcss-ls = { command = "tailwindcss-language-server", args = ["--stdio"] } taplo = { command = "taplo", args = ["lsp", "stdio"] } templ = { command = "templ", args = ["lsp"] } @@ -841,7 +842,7 @@ scope = "text.html.basic" injection-regex = "html" file-types = ["html", "htm", "shtml", "xhtml", "xht", "jsp", "asp", "aspx", "jshtm", "volt", "rhtml", "cshtml"] block-comment-tokens = { start = "" } -language-servers = [ "vscode-html-language-server" ] +language-servers = [ "vscode-html-language-server", "superhtml" ] auto-format = true indent = { tab-width = 2, unit = " " }