|
4 | 4 | "If you want to provide a fix or improvement, please create a pull request against the original repository.", |
5 | 5 | "Once accepted there, we are happy to receive an update request." |
6 | 6 | ], |
7 | | - "version": "https://github.com/emilast/vscode-logfile-highlighter/commit/fbe9797ea7889ee55def6da8dee86ba625ca9759", |
| 7 | + "version": "https://github.com/emilast/vscode-logfile-highlighter/commit/5dcab1c304110b605041824cde3810c6ef305477", |
8 | 8 | "name": "Log file", |
9 | 9 | "scopeName": "text.log", |
10 | 10 | "patterns": [ |
|
17 | 17 | "name": "comment log.verbose" |
18 | 18 | }, |
19 | 19 | { |
20 | | - "match": "\\bV/", |
| 20 | + "match": "(?<=^[\\s\\d\\p]*)\\bV\\b", |
21 | 21 | "name": "comment log.verbose" |
22 | 22 | }, |
23 | 23 | { |
|
29 | 29 | "name": "markup.changed log.debug" |
30 | 30 | }, |
31 | 31 | { |
32 | | - "match": "\\bD/", |
| 32 | + "match": "(?<=^[\\s\\d\\p]*)\\bD\\b", |
33 | 33 | "name": "markup.changed log.debug" |
34 | 34 | }, |
35 | 35 | { |
|
41 | 41 | "name": "markup.inserted log.info" |
42 | 42 | }, |
43 | 43 | { |
44 | | - "match": "\\bI/", |
| 44 | + "match": "(?<=^[\\s\\d\\p]*)\\bI\\b", |
45 | 45 | "name": "markup.inserted log.info" |
46 | 46 | }, |
47 | 47 | { |
|
53 | 53 | "name": "markup.deleted log.warning" |
54 | 54 | }, |
55 | 55 | { |
56 | | - "match": "\\bW/", |
| 56 | + "match": "(?<=^[\\s\\d\\p]*)\\bW\\b", |
57 | 57 | "name": "markup.deleted log.warning" |
58 | 58 | }, |
59 | 59 | { |
|
65 | 65 | "name": "string.regexp, strong log.error" |
66 | 66 | }, |
67 | 67 | { |
68 | | - "match": "\\bE/", |
| 68 | + "match": "(?<=^[\\s\\d\\p]*)\\bE\\b", |
69 | 69 | "name": "string.regexp, strong log.error" |
70 | 70 | }, |
71 | 71 | { |
|
88 | 88 | "match": "[0-9a-fA-F]{8}[-]?([0-9a-fA-F]{4}[-]?){3}[0-9a-fA-F]{12}", |
89 | 89 | "name": "constant.language log.constant" |
90 | 90 | }, |
| 91 | + { |
| 92 | + "match": "([0-9a-fA-F]+[:-])+[0-9a-fA-F]+", |
| 93 | + "name": "constant.language log.constant" |
| 94 | + }, |
91 | 95 | { |
92 | 96 | "match": "\\b([0-9]+|true|false|null)\\b", |
93 | 97 | "name": "constant.language log.constant" |
|
0 commit comments