mirror of https://github.com/helix-editor/helix
feat: add basic Quarto support (#13339)
parent
795040910b
commit
37b5d8ba99
|
@ -183,6 +183,7 @@
|
||||||
| purescript | ✓ | ✓ | | `purescript-language-server` |
|
| purescript | ✓ | ✓ | | `purescript-language-server` |
|
||||||
| python | ✓ | ✓ | ✓ | `ruff`, `jedi-language-server`, `pylsp` |
|
| python | ✓ | ✓ | ✓ | `ruff`, `jedi-language-server`, `pylsp` |
|
||||||
| qml | ✓ | | ✓ | `qmlls` |
|
| qml | ✓ | | ✓ | `qmlls` |
|
||||||
|
| quarto | ✓ | | ✓ | |
|
||||||
| quint | ✓ | | | `quint-language-server` |
|
| quint | ✓ | | | `quint-language-server` |
|
||||||
| r | ✓ | | | `R` |
|
| r | ✓ | | | `R` |
|
||||||
| racket | ✓ | | ✓ | `racket` |
|
| racket | ✓ | | ✓ | `racket` |
|
||||||
|
|
|
@ -2062,6 +2062,16 @@ auto-format = true
|
||||||
name = "gleam"
|
name = "gleam"
|
||||||
source = { git = "https://github.com/gleam-lang/tree-sitter-gleam", rev = "426e67087fd62be5f4533581b5916b2cf010fb5b" }
|
source = { git = "https://github.com/gleam-lang/tree-sitter-gleam", rev = "426e67087fd62be5f4533581b5916b2cf010fb5b" }
|
||||||
|
|
||||||
|
[[language]]
|
||||||
|
name = "quarto"
|
||||||
|
scope = "source.qmd"
|
||||||
|
language-id = "qmd"
|
||||||
|
injection-regex = "qmd"
|
||||||
|
file-types = ["qmd"]
|
||||||
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
grammar = "markdown"
|
||||||
|
block-comment-tokens = { start = "<!--", end = "-->" }
|
||||||
|
|
||||||
[[language]]
|
[[language]]
|
||||||
name = "ron"
|
name = "ron"
|
||||||
scope = "source.ron"
|
scope = "source.ron"
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
; inherits: markdown
|
|
@ -0,0 +1 @@
|
||||||
|
; inherits: markdown
|
|
@ -0,0 +1 @@
|
||||||
|
; inherits: markdown
|
Loading…
Reference in New Issue