File tree 1 file changed +15
-2
lines changed
1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,24 @@ patterns: [
30
30
{
31
31
include : " #normal_numeric"
32
32
}
33
+ {
34
+ include : " #comments"
35
+ }
33
36
]
34
37
repository :
35
38
bool_values :
36
39
match : " \\\" ?\\ b(true|false)\\ b\\\" ?"
37
40
name : " constant.numeric.flow"
41
+ comments :
42
+ patterns : [
43
+ {
44
+ captures :
45
+ " 1" :
46
+ name : " punctuation.definition.comment.flow"
47
+ match : " (//).*$\\ n?"
48
+ name : " comment.line.double-slash.flow"
49
+ }
50
+ ]
38
51
keyword_arrays :
39
52
captures :
40
53
" 1" :
@@ -67,7 +80,7 @@ repository:
67
80
name : " entity.name.identifier.normal_numeric.flow"
68
81
" 2" :
69
82
name : " constant.numeric.normal_numeric.flow"
70
- match : " \\\" ?\\ b(.*)\\ b\\\" ?\\ s*[:]\\ s*([0-9] )"
83
+ match : " \\\" ?\\ b(.*)\\ b\\\" ?\\ s*[:]\\ s*(\\ d+ )"
71
84
name : " meta.normal_numeric.flow"
72
85
normal_objects :
73
86
captures :
@@ -76,7 +89,7 @@ repository:
76
89
match : " \\\" ?\\ b(.*)\\ b\\\" ?(?:.*[:]\\ s*[{])"
77
90
name : " meta.normal_objects.flow"
78
91
numeric_values :
79
- match : " \\\" ?\\ b([0-9] )\\ b\\\" ?"
92
+ match : " \\\" ?\\ b(\\ d+ )\\ b\\\" ?"
80
93
name : " constant.numeric.flow"
81
94
string_values :
82
95
patterns : [
You can’t perform that action at this time.
0 commit comments