-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathlogview.sublime-settings
More file actions
55 lines (44 loc) · 2.46 KB
/
logview.sublime-settings
File metadata and controls
55 lines (44 loc) · 2.46 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
// The folowing filters select the lines that are automatically bookmarked
// whan loading a logfile. The lines containing a match of these regular
// expressions are colored depending on the type.
// Assigns the scope defined in error_scope to the line if they contain a match for
// this regular expression. Normally the line is marked with the "invalid"
// (red) scope.
"error_filter": "error|fail|exception",
// If you want to use another scope for marking errors change the following line:
"error_scope": "markup.deleted",
// This is the text displayed before the number of lines matching the error_filter
// regular expression. This can be used for I18N.
"error_status_caption": "Errors",
// Assigns the scope defined in warning_scope to the line if they contain a match for
// this regular expression. Normally the line is marked with the "markup.changed"
// (yellow) scope.
"warning_filter": "warning|not found|defer(ed)?",
// If you want to use another scope for marking errors change the following line:
"warning_scope": "markup.changed",
// This is the text displayed before the number of lines matching the warning_filter
// regular expression. This can be used for I18N.
"warning_status_caption": "Warnings",
// Assigns the scope defined in warning_scope to the line if they contain a match for
// this regular expression. Normally the line is marked with the "markup.inserted"
// (green) scope.
"mark_filter": "start(ing|ed)?|quit|end|shut(ing)? down",
// If you want to use another scope for marking errors change the following line:
"mark_scope": "markup.inserted",
// This is the text displayed before the number of lines matching the mark_filter
// regular expression. This can be used for I18N.
"mark_status_caption": "Marks",
// If this config option is set to true the reguluar expression set via error_filter,
// warning_filter and mark_filter is automatically extended to only match whole words.
// If you want to use the regular expressions as they are specified, set this value
// to false.
"auto_match_words": true,
// Defines how the error, warning and mark scopes are highlighted.
// Available styles are:
// fill: The background of the matching line is filled with the color defined by the scope.
// outline: The outline of the matching line is colored according to the scope.
// underline: The matching line is underlined according to the scope.
// none: No additional styling for the matching line.
"highlight_style": "underline"
}