mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
text-objects: add test capture & elixir queries
This commit is contained in:
parent
43027d9104
commit
67f6c85792
6 changed files with 26 additions and 1 deletions
|
@ -16,7 +16,7 @@
|
|||
(pair
|
||||
value: (_) @function.inside))?)?
|
||||
(do_block (_)* @function.inside)?)
|
||||
(#match? @_keyword "^(def|defdelegate|defguard|defguardp|defmacro|defmacrop|defn|defnp|defp|test|describe|setup)$")) @function.around
|
||||
(#match? @_keyword "^(def|defdelegate|defguard|defguardp|defmacro|defmacrop|defn|defnp|defp)$")) @function.around
|
||||
|
||||
(anonymous_function
|
||||
(stab_clause right: (body) @function.inside)) @function.around
|
||||
|
@ -25,3 +25,9 @@
|
|||
target: (identifier) @_keyword
|
||||
(do_block (_)* @class.inside))
|
||||
(#match? @_keyword "^(defmodule|defprotocol|defimpl)$")) @class.around
|
||||
|
||||
((call
|
||||
target: (identifier) @_keyword
|
||||
(arguments ((string) . (_)?))
|
||||
(do_block (_)* @test.inside)?)
|
||||
(#match? @_keyword "^(test|describe)$")) @test.around
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue