aboutsummaryrefslogtreecommitdiff
path: root/runtime/queries/just/textobjects.scm
blob: 4be379587e4130465b416a63adc4343ce204bcd7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
(body) @function.inside
(recipe) @function.around
(expression 
    if:(expression) @function.inside 
) 
(expression 
    else:(expression) @function.inside
) 
(interpolation (expression) @function.inside) @function.around
(settinglist (stringlist) @function.inside) @function.around

(call (NAME) @class.inside) @class.around
(dependency (NAME) @class.inside) @class.around
(depcall (NAME) @class.inside)

(dependency) @parameter.around
(depcall) @parameter.inside
(depcall (expression) @parameter.inside) 

(stringlist 
    (string) @parameter.inside
    . ","? @_end
    ; Commented out since we don't support `#make-range!` at the moment
    ; (#make-range! "parameter.around" @parameter.inside @_end)
)
(parameters 
    [(parameter) 
    (variadic_parameters)] @parameter.inside
    . " "? @_end
    ; Commented out since we don't support `#make-range!` at the moment
    ; (#make-range! "parameter.around" @parameter.inside @_end)
)

(expression 
    (condition) @function.inside
) @function.around
(expression 
    if:(expression) @function.inside 
)
(expression 
    else:(expression) @function.inside
)

(item [(alias) (assignment) (export) (setting)]) @class.around
(recipeheader) @class.around
(line) @class.around

(comment) @comment.around