mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 12:27:42 +03:00
Improve Python queries, add locals (#3284)
This commit is contained in:
parent
0c08ff1596
commit
11367488ac
2 changed files with 52 additions and 1 deletions
|
@ -1,5 +1,10 @@
|
|||
; Imports
|
||||
|
||||
(dotted_name
|
||||
(identifier)* @namespace)
|
||||
|
||||
(aliased_import
|
||||
alias: (identifier) @namespace)
|
||||
|
||||
; Builtin functions
|
||||
|
||||
|
@ -55,7 +60,6 @@
|
|||
(parameters (typed_parameter (identifier) @variable.parameter))
|
||||
(parameters (default_parameter name: (identifier) @variable.parameter))
|
||||
(parameters (typed_default_parameter name: (identifier) @variable.parameter))
|
||||
(keyword_argument name: (identifier) @variable.parameter)
|
||||
|
||||
(parameters
|
||||
(list_splat_pattern ; *args
|
||||
|
@ -63,6 +67,9 @@
|
|||
(parameters
|
||||
(dictionary_splat_pattern ; **kwargs
|
||||
(identifier) @variable.parameter))
|
||||
|
||||
(lambda_parameters
|
||||
(identifier) @variable.parameter)
|
||||
|
||||
; Types
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue