mirror of https://github.com/helix-editor/helix
Improve Python queries, add locals (#3284)
parent
0c08ff1596
commit
11367488ac
@ -0,0 +1,44 @@
|
|||||||
|
;; Scopes
|
||||||
|
|
||||||
|
[
|
||||||
|
(module)
|
||||||
|
(function_definition)
|
||||||
|
(lambda)
|
||||||
|
] @local.scope
|
||||||
|
|
||||||
|
;; Definitions
|
||||||
|
|
||||||
|
; Parameters
|
||||||
|
(parameters
|
||||||
|
(identifier) @local.definition)
|
||||||
|
(parameters
|
||||||
|
(typed_parameter
|
||||||
|
(identifier) @local.definition))
|
||||||
|
(parameters
|
||||||
|
(default_parameter
|
||||||
|
name: (identifier) @local.definition))
|
||||||
|
(parameters
|
||||||
|
(typed_default_parameter
|
||||||
|
name: (identifier) @local.definition))
|
||||||
|
(parameters
|
||||||
|
(list_splat_pattern ; *args
|
||||||
|
(identifier) @local.definition))
|
||||||
|
(parameters
|
||||||
|
(dictionary_splat_pattern ; **kwargs
|
||||||
|
(identifier) @local.definition))
|
||||||
|
|
||||||
|
(lambda_parameters
|
||||||
|
(identifier) @local.definition)
|
||||||
|
|
||||||
|
; Imports
|
||||||
|
(import_statement
|
||||||
|
name: (dotted_name
|
||||||
|
(identifier) @local.definition))
|
||||||
|
|
||||||
|
(aliased_import
|
||||||
|
alias: (identifier) @local.definition)
|
||||||
|
|
||||||
|
;; References
|
||||||
|
|
||||||
|
(identifier) @local.reference
|
||||||
|
|
Loading…
Reference in New Issue