mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 03:17:45 +03:00
Add initial symbols queries
This commit is contained in:
parent
cc3b77b584
commit
02c5df9031
6 changed files with 83 additions and 0 deletions
9
runtime/queries/c/symbols.scm
Normal file
9
runtime/queries/c/symbols.scm
Normal file
|
@ -0,0 +1,9 @@
|
|||
(function_declarator
|
||||
declarator: [(identifier) (field_identifier)] @definition.function)
|
||||
|
||||
(preproc_function_def name: (identifier) @definition.function)
|
||||
|
||||
(type_definition
|
||||
declarator: (type_identifier) @definition.type)
|
||||
|
||||
(preproc_def name: (identifier) @definition.constant)
|
12
runtime/queries/cpp/symbols.scm
Normal file
12
runtime/queries/cpp/symbols.scm
Normal file
|
@ -0,0 +1,12 @@
|
|||
; inherits: c
|
||||
|
||||
(function_declarator
|
||||
declarator: (qualified_identifier name: (identifier) @definition.function))
|
||||
|
||||
(struct_specifier
|
||||
name: (type_identifier) @definition.struct
|
||||
body: (field_declaration_list))
|
||||
|
||||
(class_specifier
|
||||
name: (type_identifier) @definition.class
|
||||
body: (field_declaration_list))
|
10
runtime/queries/elixir/symbols.scm
Normal file
10
runtime/queries/elixir/symbols.scm
Normal file
|
@ -0,0 +1,10 @@
|
|||
((call
|
||||
target: (identifier) @_keyword
|
||||
(arguments
|
||||
[
|
||||
(call target: (identifier) @definition.function)
|
||||
; function has a guard
|
||||
(binary_operator
|
||||
left: (call target: (identifier) @definition.function))
|
||||
]))
|
||||
(#any-of? @_keyword "def" "defdelegate" "defguard" "defguardp" "defmacro" "defmacrop" "defn" "defnp" "defp"))
|
45
runtime/queries/erlang/symbols.scm
Normal file
45
runtime/queries/erlang/symbols.scm
Normal file
|
@ -0,0 +1,45 @@
|
|||
; Modules
|
||||
(attribute
|
||||
name: (atom) @_attr
|
||||
(arguments (atom) @definition.module)
|
||||
(#eq? @_attr "module"))
|
||||
|
||||
; Constants
|
||||
((attribute
|
||||
name: (atom) @_attr
|
||||
(arguments
|
||||
.
|
||||
[
|
||||
(atom) @definition.constant
|
||||
(call function: [(variable) (atom)] @definition.macro)
|
||||
]))
|
||||
(#eq? @_attr "define"))
|
||||
|
||||
; Record definitions
|
||||
((attribute
|
||||
name: (atom) @_attr
|
||||
(arguments
|
||||
.
|
||||
(atom) @definition.struct))
|
||||
(#eq? @_attr "record"))
|
||||
|
||||
; Function specs
|
||||
((attribute
|
||||
name: (atom) @_attr
|
||||
(stab_clause name: (atom) @definition.interface))
|
||||
(#eq? @_attr "spec"))
|
||||
|
||||
; Types
|
||||
((attribute
|
||||
name: (atom) @_attr
|
||||
(arguments
|
||||
(binary_operator
|
||||
left: [
|
||||
(atom) @definition.type
|
||||
(call function: (atom) @definition.type)
|
||||
]
|
||||
operator: "::")))
|
||||
(#any-of? @_attr "type" "opaque"))
|
||||
|
||||
; Functions
|
||||
(function_clause name: (atom) @definition.function)
|
2
runtime/queries/markdown/symbols.scm
Normal file
2
runtime/queries/markdown/symbols.scm
Normal file
|
@ -0,0 +1,2 @@
|
|||
; TODO: have symbol types for markup?
|
||||
(atx_heading) @definition.class
|
5
runtime/queries/python/symbols.scm
Normal file
5
runtime/queries/python/symbols.scm
Normal file
|
@ -0,0 +1,5 @@
|
|||
(function_definition
|
||||
name: (identifier) @definition.function)
|
||||
|
||||
(class_definition
|
||||
name: (identifier) @definition.class)
|
Loading…
Add table
Add a link
Reference in a new issue