-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathTask.tmLanguage
79 lines (79 loc) · 1.92 KB
/
Task.tmLanguage
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?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>
<string>task</string>
<string>tasks</string>
<string>todo.txt</string>
<string>todo</string>
<string>todolists</string>
</array>
<key>name</key>
<string>Task</string>
<key>patterns</key>
<array>
<dict>
<key>comment</key>
<string>Keywords</string>
<key>match</key>
<string>\b(New|new|NEW|Working|working|WORKING|Done|done|DONE|Todo|TODO|todo|bug|Bug|BUG|TBD|Note|NOTE|Notes|NOTES)\b</string>
<key>name</key>
<string>keyword</string>
</dict>
<dict>
<key>comment</key>
<string>[ and ]</string>
<key>match</key>
<string>[\[\]]</string>
<key>name</key>
<string>keyword</string>
</dict>
<dict>
<key>comment</key>
<string>Task Title</string>
<key>match</key>
<string>^[^-~✓]*:\s+</string>
<key>name</key>
<string>support.function</string>
</dict>
<dict>
<key>comment</key>
<string>Started Tasks</string>
<key>match</key>
<string>^\s*~[^\[\]]*</string>
<key>name</key>
<string>variable.parameter</string>
</dict>
<dict>
<key>comment</key>
<string>Completed Tasks</string>
<key>match</key>
<string>^\s*✓[^\[\]]*</string>
<key>name</key>
<string>entity.other.attribute-name</string>
</dict>
<dict>
<key>comment</key>
<string>Action Items</string>
<key>match</key>
<string>^\s*-[^\[\]]*</string>
<key>name</key>
<string>keyword</string>
</dict>
<dict>
<key>comment</key>
<string>url</string>
<key>match</key>
<string>\b(https?|ftp)://\S+(/|[^\s`!()\[\]{};:'".,<>?«»“”‘’])</string>
<key>name</key>
<string>keyword</string>
</dict>
</array>
<key>scopeName</key>
<string>text.task</string>
<key>uuid</key>
<string>47fcd6b9-58c4-4518-855b-a7e16298177c</string>
</dict>
</plist>