-
Notifications
You must be signed in to change notification settings - Fork 27
/
Context.sublime-menu
53 lines (47 loc) · 1.42 KB
/
Context.sublime-menu
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
[
{ "caption": "-", "id":"jekyll-context-separator-top"},
{
"caption": "Jekyll", "id":"jekyll-context-main",
"children":
[
{
"caption": "New post",
"command": "jekyll_new_post"
},
{
"caption": "New post from template",
"command": "jekyll_new_post_from_template"
},
{ "caption": "-" },
{
"caption": "New draft",
"command": "jekyll_new_draft"
},
{
"caption": "New draft from template",
"command": "jekyll_new_draft_from_template"
},
{ "caption": "-" },
{
"caption": "New template",
"command": "jekyll_new_template"
},
{ "caption": "-" },
{
"caption": "Insert current date",
"command": "jekyll_insert_date",
"args": {"format": "date"}
},
{
"caption": "Insert current datetime",
"command": "jekyll_insert_date",
"args": {"format": "datetime"}
},
{
"caption": "Insert upload tag",
"command": "jekyll_list_uploads"
}
]
},
{ "caption": "-", "id":"jekyll-context-separator-bottom"}
]