-
Notifications
You must be signed in to change notification settings - Fork 136
/
Gist.sublime-commands
58 lines (58 loc) · 1.28 KB
/
Gist.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
[
{
"caption": "Gist: Create Public Gist",
"command": "gist"
},
{
"caption": "Gist: Create Private Gist",
"command": "gist_private"
},
{
"caption": "Gist: Open Gist",
"command": "gist_list"
},
{
"caption": "Gist: Insert Gist",
"command": "insert_gist_list"
},
{
"caption": "Gist: Embed as script",
"command": "insert_gist_embed_list"
},
{
"caption": "Gist: Add File to Gist",
"command": "gist_add_file"
},
{
"caption": "Gist: Copy Gist URL",
"command": "gist_copy_url"
},
{
"caption": "Gist: Open Gist in Browser",
"command": "gist_open_browser"
},
{
"caption": "Gist: Update File",
"command": "gist_update_file"
},
{
"caption": "Gist: Rename File",
"command": "gist_rename_file"
},
{
"caption": "Gist: Delete Gist File",
"command": "gist_delete_file"
},
{
"caption": "Gist: Change Gist Description",
"command": "gist_change_description"
},
{
"caption": "Gist: Delete Gist",
"command": "gist_delete"
},
{
"caption": "Gist: Shorten a GitHub.com URL",
"command": "gist_gitio"
}
]