-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathlogcat.JSON-tmLanguage
More file actions
32 lines (32 loc) · 918 Bytes
/
logcat.JSON-tmLanguage
File metadata and controls
32 lines (32 loc) · 918 Bytes
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
{ "name": "logcat",
"scopeName": "text.logcat",
"fileTypes": [""],
"firstLineMatch": "^[IWDE]/",
"patterns": [
{ "match": "^I/\\w+",
"name": "entity.name.text.logcat",
"comment": "Information"
},
{ "match": "^W/\\w+",
"name": "constant.support.text.logcat",
"comment": "Warning"
},
{ "match": "^D/\\w+",
"name": "support.function.text.logcat",
"comment": "Debug"
},
{ "match": "^E/\\w+|error(\\scode\\s+=\\s+\\d+)*|(\\w)*Exception|at\\s+|.err|died|denied",
"name": "keyword.text.logcat",
"comment": "Error"
},
{ "match": "\\(\\s*\\d+\\)",
"name": "storage.modifier.text.logcat",
"comment": "No"
},
{ "match": "Initializing|Registered|Ignoring|Disabling|mapping|Setting",
"name": "constant.support.text.logcat",
"comment": "Action"
}
],
"uuid": "d5cfeeec-a040-454b-ba47-6a08db263ac6"
}