-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDefault.sublime-keymap
More file actions
42 lines (37 loc) · 1.11 KB
/
Default.sublime-keymap
File metadata and controls
42 lines (37 loc) · 1.11 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
[
// List all colored comment tags in project
{
"keys": ["ctrl+shift+t"],
"command": "colored_comments_list_tags"
},
// List all colored comment tags in current file only
{
"keys": ["ctrl+shift+alt+t"],
"command": "colored_comments_list_tags",
"args": {"current_file_only": true}
},
// List only TODOs in project
{
"keys": ["ctrl+alt+t"],
"command": "colored_comments_list_tags",
"args": {"tag_filter": "TODO"}
},
// List only TODOs in current file
{
"keys": ["ctrl+alt+shift+t"],
"command": "colored_comments_list_tags",
"args": {"tag_filter": "TODO", "current_file_only": true}
},
// List only FIXMEs in project
{
"keys": ["ctrl+alt+f"],
"command": "colored_comments_list_tags",
"args": {"tag_filter": "FIXME"}
},
// List only FIXMEs in current file
{
"keys": ["ctrl+alt+shift+f"],
"command": "colored_comments_list_tags",
"args": {"tag_filter": "FIXME", "current_file_only": true}
}
]