forked from glymehrvrd/CppYCM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathErrorPanel.tmLanguage
More file actions
34 lines (34 loc) · 894 Bytes
/
ErrorPanel.tmLanguage
File metadata and controls
34 lines (34 loc) · 894 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
33
34
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>fileTypes</key>
<array>
</array>
<key>name</key>
<string>C++YouCompleteMeErrorPanel</string>
<key>patterns</key>
<array>
<dict>
<key>comment</key>
<string>Warnings</string>
<key>match</key>
<string>^\[C\+\+YouCompleteMe\] > \[WARNING\] .*$</string>
<key>name</key>
<string>string.quoted.double.c</string>
</dict>
<dict>
<key>comment</key>
<string>Errors</string>
<key>match</key>
<string>^\[C\+\+YouCompleteMe\] > \[ERROR\] .*$</string>
<key>name</key>
<string>keyword.control.c</string>
</dict>
</array>
<key>scopeName</key>
<string>text.cppycm.errorpanel</string>
<key>uuid</key>
<string>2e18d5f4-b4d6-11e4-a71e-12e3f512a338</string>
</dict>
</plist>