File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,11 @@ patterns:
24
24
25
25
- comment : Comparison operators
26
26
name : keyword.operator.comparison.octo
27
- match : (?<=^|\s)(?:==|!=|<=|>=|<|>)(?=$|\s)
27
+ match : (?<=^|\s)(?:==|!=)(?=$|\s)
28
+
29
+ - comment : Relational operators
30
+ name : keyword.operator.relational.octo
31
+ match : (?<=^|\s)(?:<=|>=|<|>)(?=$|\s)
28
32
29
33
- comment : Control flow keywords
30
34
name : keyword.control.octo
Original file line number Diff line number Diff line change 46
46
<key >comment </key >
47
47
<string >Comparison operators </string >
48
48
<key >match </key >
49
- <string >(?< =^|\s)(?:==|!=| < =| > =| < | > )(?=$|\s) </string >
49
+ <string >(?< =^|\s)(?:==|!=)(?=$|\s) </string >
50
50
<key >name </key >
51
51
<string >keyword.operator.comparison.octo </string >
52
52
</dict >
53
+ <dict >
54
+ <key >comment </key >
55
+ <string >Relational operators </string >
56
+ <key >match </key >
57
+ <string >(?< =^|\s)(?:< =|> =|< |> )(?=$|\s) </string >
58
+ <key >name </key >
59
+ <string >keyword.operator.relational.octo </string >
60
+ </dict >
53
61
<dict >
54
62
<key >comment </key >
55
63
<string >Control flow keywords </string >
You can’t perform that action at this time.
0 commit comments