Skip to content

Commit

Permalink
Add py, hs, rs and typ injection regexes (helix-editor#10785)
Browse files Browse the repository at this point in the history
* Add `py` as valid python injection regex

* Add `hs` and `rs` for `haskell` and `rust`

* Add `typ` injection regex for `typst`
  • Loading branch information
tingerrr committed Jun 7, 2024
1 parent 3a03109 commit 80e0e98
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions languages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ mode = "location"
[[language]]
name = "rust"
scope = "source.rust"
injection-regex = "rust"
injection-regex = "rs|rust"
file-types = ["rs"]
roots = ["Cargo.toml", "Cargo.lock"]
shebangs = ["rust-script", "cargo"]
Expand Down Expand Up @@ -824,7 +824,7 @@ source = { git = "https://github.com/tree-sitter/tree-sitter-html", rev = "29f53
[[language]]
name = "python"
scope = "source.python"
injection-regex = "python"
injection-regex = "py(thon)?"
file-types = ["py", "pyi", "py3", "pyw", "ptl", "rpy", "cpy", "ipy", "pyt", { glob = ".python_history" }, { glob = ".pythonstartup" }, { glob = ".pythonrc" }, { glob = "SConstruct" }, { glob = "SConscript" }]
shebangs = ["python"]
roots = ["pyproject.toml", "setup.py", "poetry.lock", "pyrightconfig.json"]
Expand Down Expand Up @@ -1265,7 +1265,7 @@ source = { git = "https://github.com/ikatyang/tree-sitter-yaml", rev = "0e36bed1
[[language]]
name = "haskell"
scope = "source.haskell"
injection-regex = "haskell"
injection-regex = "hs|haskell"
file-types = ["hs", "hs-boot"]
roots = ["Setup.hs", "stack.yaml", "cabal.project"]
comment-token = "--"
Expand Down Expand Up @@ -3155,7 +3155,7 @@ grammar = "html"
[[language]]
name = "typst"
scope = "source.typst"
injection-regex = "typst"
injection-regex = "typ(st)?"
file-types = ["typst", "typ"]
comment-token = "//"
language-servers = ["tinymist", "typst-lsp"]
Expand Down

0 comments on commit 80e0e98

Please sign in to comment.