We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7cf3fc commit 4794b2bCopy full SHA for 4794b2b
queries/shellscript.scm
@@ -10,13 +10,18 @@
10
)
11
[
12
(if_statement)
13
+ (while_statement)
14
+ (for_statement)
15
(function_definition)
16
(declaration_command)
17
] @statement
18
19
(
20
(_
- (variable_assignment) @statement
21
+ [
22
+ (variable_assignment)
23
+ (command)
24
+ ] @statement
25
(#not-parent-type? @statement declaration_command)
26
27
@@ -294,3 +299,5 @@
294
299
value: (_) @value @value.leading.end.endOf
295
300
) @_.domain.end.endOf
296
301
302
+
303
+(regex) @regularExpression @textFragment
0 commit comments