mirror of https://github.com/helix-editor/helix
feat(languages): Lean experimental tree-sitter-lean (#1422)
* Add experimental tree-sitter-lean * Run docgen * Copy over the queries from lean.nvim * Update .gitmodules Co-authored-by: Ivan Tham <pickfire@riseup.net> * Update lean highlights and run docgen * Update runtime/queries/lean/injections.scm Co-authored-by: Michael Davis <michael.davis@nfiindustries.com> * Lean: Move variable matcher to bottom * Update runtime/queries/lean/locals.scm Co-authored-by: Michael Davis <michael.davis@nfiindustries.com> Co-authored-by: Ivan Tham <pickfire@riseup.net> Co-authored-by: Michael Davis <michael.davis@nfiindustries.com>pull/1529/head
parent
e7eab95b94
commit
8ea5742b08
@ -0,0 +1 @@
|
|||||||
|
Subproject commit d98426109258b266e1e92358c5f11716d2e8f638
|
@ -0,0 +1,15 @@
|
|||||||
|
[
|
||||||
|
(namespace)
|
||||||
|
(section)
|
||||||
|
|
||||||
|
(instance)
|
||||||
|
(def)
|
||||||
|
(theorem)
|
||||||
|
(example)
|
||||||
|
|
||||||
|
(product)
|
||||||
|
(array)
|
||||||
|
(list)
|
||||||
|
|
||||||
|
(string)
|
||||||
|
] @fold
|
@ -0,0 +1,2 @@
|
|||||||
|
((comment) @injection.content
|
||||||
|
(#set! injection.language "markdown"))
|
@ -0,0 +1,5 @@
|
|||||||
|
[
|
||||||
|
(module)
|
||||||
|
(namespace)
|
||||||
|
(section)
|
||||||
|
] @local.scope
|
Loading…
Reference in New Issue