-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefault.sublime-commands
More file actions
35 lines (35 loc) · 2.04 KB
/
Copy pathDefault.sublime-commands
File metadata and controls
35 lines (35 loc) · 2.04 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
[
{ "caption": "Tasks: New document", "command": "plain_tasks_new_task_doc" },
{ "caption": "Tasks: Complete", "command": "plain_tasks_complete" },
{ "caption": "Tasks: Cancel", "command": "plain_tasks_cancel" },
{ "caption": "Tasks: New", "command": "plain_tasks_new" },
{ "caption": "Tasks: Archive", "command": "plain_tasks_archive" },
{ "caption": "Tasks: Archive within selection(s)", "command": "plain_tasks_archive", "args": {"partial": true} },
{ "caption": "Tasks: Archive (Org-Mode Style)", "command": "plain_tasks_archive_org" },
{ "caption": "Tasks: Open URL", "command": "plain_tasks_open_url" },
{ "caption": "Tasks: Open Link", "command": "plain_tasks_open_link" },
{ "caption": "Tasks: View as HTML", "command": "plain_tasks_convert_to_html" },
{ "caption": "Tasks: Save as HTML…", "command": "plain_tasks_convert_to_html", "args": {"ask": true} },
{ "caption": "Tasks: Copy Statistics", "command": "plain_tasks_copy_stats" },
{ "caption": "Tasks: Fold to due tasks", "command": "plain_tasks_fold_to_due_tags" },
{ "caption": "Tasks: Filter by tags under cursors", "command": "plain_tasks_fold_to_tags" },
{ "caption": "Tasks: Add due date tag", "command": "plain_tasks_inject_due_date" },
{ "caption": "Tasks: Sort items in the list under cursor by due date and priority", "command": "plain_tasks_sort_by_due_date_and_priority" },
{ "caption": "Tasks: Reverse sort items in the list under cursor by due date and priority", "command": "plain_tasks_sort_by_due_date_and_priority", "args": {"descending": true} },
{
"caption": "Preferences: PlainTasks Settings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/PlainTasks/PlainTasks.sublime-settings",
"default": "// See the left pane for the list of settings and valid values\n{\n\t$0\n}\n"
}
},
{
"caption": "Preferences: PlainTasks Key Bindings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/PlainTasks/Default ($platform).sublime-keymap",
"default": "// See the left pane for the list of settings and valid values\n{\n\t$0\n}\n"
}
}
]