feat(languages): add superhtml
as lsp for html
(#11609)
This commit is contained in:
parent
5ffd4ae529
commit
24f24299f2
2 changed files with 3 additions and 2 deletions
|
@ -87,7 +87,7 @@
|
||||||
| hocon | ✓ | ✓ | ✓ | |
|
| hocon | ✓ | ✓ | ✓ | |
|
||||||
| hoon | ✓ | | | |
|
| hoon | ✓ | | | |
|
||||||
| hosts | ✓ | | | |
|
| hosts | ✓ | | | |
|
||||||
| html | ✓ | | | `vscode-html-language-server` |
|
| html | ✓ | | | `vscode-html-language-server`, `superhtml` |
|
||||||
| hurl | ✓ | ✓ | ✓ | |
|
| hurl | ✓ | ✓ | ✓ | |
|
||||||
| hyprlang | ✓ | | ✓ | |
|
| hyprlang | ✓ | | ✓ | |
|
||||||
| idris | | | | `idris2-lsp` |
|
| idris | | | | `idris2-lsp` |
|
||||||
|
|
|
@ -94,6 +94,7 @@ solc = { command = "solc", args = ["--lsp"] }
|
||||||
sourcekit-lsp = { command = "sourcekit-lsp" }
|
sourcekit-lsp = { command = "sourcekit-lsp" }
|
||||||
svlangserver = { command = "svlangserver", args = [] }
|
svlangserver = { command = "svlangserver", args = [] }
|
||||||
swipl = { command = "swipl", args = [ "-g", "use_module(library(lsp_server))", "-g", "lsp_server:main", "-t", "halt", "--", "stdio" ] }
|
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"] }
|
tailwindcss-ls = { command = "tailwindcss-language-server", args = ["--stdio"] }
|
||||||
taplo = { command = "taplo", args = ["lsp", "stdio"] }
|
taplo = { command = "taplo", args = ["lsp", "stdio"] }
|
||||||
templ = { command = "templ", args = ["lsp"] }
|
templ = { command = "templ", args = ["lsp"] }
|
||||||
|
@ -841,7 +842,7 @@ scope = "text.html.basic"
|
||||||
injection-regex = "html"
|
injection-regex = "html"
|
||||||
file-types = ["html", "htm", "shtml", "xhtml", "xht", "jsp", "asp", "aspx", "jshtm", "volt", "rhtml", "cshtml"]
|
file-types = ["html", "htm", "shtml", "xhtml", "xht", "jsp", "asp", "aspx", "jshtm", "volt", "rhtml", "cshtml"]
|
||||||
block-comment-tokens = { start = "<!--", end = "-->" }
|
block-comment-tokens = { start = "<!--", end = "-->" }
|
||||||
language-servers = [ "vscode-html-language-server" ]
|
language-servers = [ "vscode-html-language-server", "superhtml" ]
|
||||||
auto-format = true
|
auto-format = true
|
||||||
indent = { tab-width = 2, unit = " " }
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue