mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Add initial support for janet-lang (#9081)
* Add initial support for janet-lang * Use default roots for janet-lang
This commit is contained in:
parent
437fbee425
commit
b4571c292e
3 changed files with 11 additions and 0 deletions
|
@ -73,6 +73,7 @@
|
||||||
| idris | | | | `idris2-lsp` |
|
| idris | | | | `idris2-lsp` |
|
||||||
| iex | ✓ | | | |
|
| iex | ✓ | | | |
|
||||||
| ini | ✓ | | | |
|
| ini | ✓ | | | |
|
||||||
|
| janet | ✓ | | | |
|
||||||
| java | ✓ | ✓ | ✓ | `jdtls` |
|
| java | ✓ | ✓ | ✓ | `jdtls` |
|
||||||
| javascript | ✓ | ✓ | ✓ | `typescript-language-server` |
|
| javascript | ✓ | ✓ | ✓ | `typescript-language-server` |
|
||||||
| jinja | ✓ | | | |
|
| jinja | ✓ | | | |
|
||||||
|
|
|
@ -2952,3 +2952,12 @@ file-types = ["log"]
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
name = "log"
|
name = "log"
|
||||||
source = { git = "https://github.com/Tudyx/tree-sitter-log", rev = "62cfe307e942af3417171243b599cc7deac5eab9" }
|
source = { git = "https://github.com/Tudyx/tree-sitter-log", rev = "62cfe307e942af3417171243b599cc7deac5eab9" }
|
||||||
|
|
||||||
|
[[language]]
|
||||||
|
name = "janet"
|
||||||
|
scope = "source.janet"
|
||||||
|
injection-regex = "janet"
|
||||||
|
file-types = ["janet"]
|
||||||
|
comment-token = "#"
|
||||||
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
grammar = "clojure"
|
||||||
|
|
1
runtime/queries/janet/highlights.scm
Normal file
1
runtime/queries/janet/highlights.scm
Normal file
|
@ -0,0 +1 @@
|
||||||
|
; inherits: clojure
|
Loading…
Add table
Add a link
Reference in a new issue