mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
feat: Add markdown-oxide language server (#9758)
This commit is contained in:
parent
44db25939c
commit
062fb819a2
2 changed files with 3 additions and 2 deletions
|
@ -104,7 +104,7 @@
|
||||||
| lua | ✓ | ✓ | ✓ | `lua-language-server` |
|
| lua | ✓ | ✓ | ✓ | `lua-language-server` |
|
||||||
| make | ✓ | | ✓ | |
|
| make | ✓ | | ✓ | |
|
||||||
| markdoc | ✓ | | | `markdoc-ls` |
|
| markdoc | ✓ | | | `markdoc-ls` |
|
||||||
| markdown | ✓ | | | `marksman` |
|
| markdown | ✓ | | | `marksman`, `markdown-oxide` |
|
||||||
| markdown.inline | ✓ | | | |
|
| markdown.inline | ✓ | | | |
|
||||||
| matlab | ✓ | ✓ | ✓ | |
|
| matlab | ✓ | ✓ | ✓ | |
|
||||||
| mermaid | ✓ | | | |
|
| mermaid | ✓ | | | |
|
||||||
|
|
|
@ -45,6 +45,7 @@ kotlin-language-server = { command = "kotlin-language-server" }
|
||||||
lean = { command = "lean", args = [ "--server" ] }
|
lean = { command = "lean", args = [ "--server" ] }
|
||||||
ltex-ls = { command = "ltex-ls" }
|
ltex-ls = { command = "ltex-ls" }
|
||||||
markdoc-ls = { command = "markdoc-ls", args = ["--stdio"] }
|
markdoc-ls = { command = "markdoc-ls", args = ["--stdio"] }
|
||||||
|
markdown-oxide = { command = "markdown-oxide" }
|
||||||
marksman = { command = "marksman", args = ["server"] }
|
marksman = { command = "marksman", args = ["server"] }
|
||||||
metals = { command = "metals", config = { "isHttpEnabled" = true } }
|
metals = { command = "metals", config = { "isHttpEnabled" = true } }
|
||||||
mint = { command = "mint", args = ["ls"] }
|
mint = { command = "mint", args = ["ls"] }
|
||||||
|
@ -1440,7 +1441,7 @@ scope = "source.md"
|
||||||
injection-regex = "md|markdown"
|
injection-regex = "md|markdown"
|
||||||
file-types = ["md", "markdown", "mkd", "mdwn", "mdown", "markdn", "mdtxt", "mdtext", "workbook", { glob = "PULLREQ_EDITMSG" }]
|
file-types = ["md", "markdown", "mkd", "mdwn", "mdown", "markdn", "mdtxt", "mdtext", "workbook", { glob = "PULLREQ_EDITMSG" }]
|
||||||
roots = [".marksman.toml"]
|
roots = [".marksman.toml"]
|
||||||
language-servers = [ "marksman" ]
|
language-servers = [ "marksman", "markdown-oxide" ]
|
||||||
indent = { tab-width = 2, unit = " " }
|
indent = { tab-width = 2, unit = " " }
|
||||||
block-comment-tokens = { start = "<!--", end = "-->" }
|
block-comment-tokens = { start = "<!--", end = "-->" }
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue