Skip to content

Commit e4d5a83

Browse files
committed
Add single line comment to syntax color
1 parent 1d2f221 commit e4d5a83

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

grammars/flow-file.cson

+15-2
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,24 @@ patterns: [
3030
{
3131
include: "#normal_numeric"
3232
}
33+
{
34+
include: "#comments"
35+
}
3336
]
3437
repository:
3538
bool_values:
3639
match: "\\\"?\\b(true|false)\\b\\\"?"
3740
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+
]
3851
keyword_arrays:
3952
captures:
4053
"1":
@@ -67,7 +80,7 @@ repository:
6780
name: "entity.name.identifier.normal_numeric.flow"
6881
"2":
6982
name: "constant.numeric.normal_numeric.flow"
70-
match: "\\\"?\\b(.*)\\b\\\"?\\s*[:]\\s*([0-9])"
83+
match: "\\\"?\\b(.*)\\b\\\"?\\s*[:]\\s*(\\d+)"
7184
name: "meta.normal_numeric.flow"
7285
normal_objects:
7386
captures:
@@ -76,7 +89,7 @@ repository:
7689
match: "\\\"?\\b(.*)\\b\\\"?(?:.*[:]\\s*[{])"
7790
name: "meta.normal_objects.flow"
7891
numeric_values:
79-
match: "\\\"?\\b([0-9])\\b\\\"?"
92+
match: "\\\"?\\b(\\d+)\\b\\\"?"
8093
name: "constant.numeric.flow"
8194
string_values:
8295
patterns: [

0 commit comments

Comments
 (0)