-
Notifications
You must be signed in to change notification settings - Fork 27
/
Jekyll.sublime-commands
84 lines (84 loc) · 2.11 KB
/
Jekyll.sublime-commands
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
80
81
82
83
84
[
{
"caption": "Jekyll: New post",
"command": "jekyll_new_post"
},
{
"caption": "Jekyll: New post from template",
"command": "jekyll_new_post_from_template"
},
{
"caption": "Jekyll: Remove post",
"command": "jekyll_remove_post"
},
{
"caption": "Jekyll: Open post",
"command": "jekyll_open_post"
},
{
"caption": "Jekyll: New draft",
"command": "jekyll_new_draft"
},
{
"caption": "Jekyll: New draft from template",
"command": "jekyll_new_draft_from_template"
},
{
"caption": "Jekyll: Promote draft to post",
"command": "jekyll_promote_draft"
},
{
"caption": "Jekyll: Remove draft",
"command": "jekyll_remove_draft"
},
{
"caption": "Jekyll: Open draft",
"command": "jekyll_open_draft"
},
{
"caption": "Jekyll: New template",
"command": "jekyll_new_template"
},
{
"caption": "Jekyll: Edit template",
"command": "jekyll_edit_template"
},
{
"caption": "Jekyll: Remove template",
"command": "jekyll_remove_template"
},
{
"caption": "Jekyll: Browse templates...",
"command": "jekyll_browse_templates"
},
{
"caption": "Jekyll: Edit _config.yml",
"command": "jekyll_edit_config"
},
{
"caption": "Jekyll: Insert current date",
"command": "jekyll_insert_date",
"args": {"format": "date"}
},
{
"caption": "Jekyll: Insert current datetime",
"command": "jekyll_insert_date",
"args": {"format": "datetime"}
},
{
"caption": "Jekyll: Insert upload",
"command": "jekyll_list_uploads"
},
{
"caption": "Jekyll Utility: Migrate user settings",
"command": "jekyll_migrate_user_settings"
},
{
"caption": "Jekyll Utility: Migrate project settings",
"command": "jekyll_migrate_project_settings"
},
{
"caption": "Jekyll Utility: Browse backups...",
"command": "jekyll_browse_backups"
}
]