-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathGithub.sublime-commands
31 lines (31 loc) · 2.41 KB
/
Github.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
[
{ "caption": "GitHub: Private Gist from Selection", "command": "private_gist_from_selection" },
{ "caption": "GitHub: Public Gist from Selection", "command": "public_gist_from_selection" },
{ "caption": "GitHub: Copy Gist to Clipboard", "command": "open_gist" },
{ "caption": "GitHub: Copy Starred Gist to Clipboard", "command": "open_starred_gist" },
{ "caption": "GitHub: Open Gist in Editor", "command": "open_gist_in_editor" },
{ "caption": "GitHub: Open Starred Gist in Editor", "command": "open_starred_gist_in_editor" },
{ "caption": "GitHub: Copy Gist URL to Clipboard", "command": "open_gist_url" },
{ "caption": "GitHub: Open Gist in Browser", "command": "open_gist_in_browser" },
{ "caption": "GitHub: Open Starred Gist in Browser", "command": "open_starred_gist_in_browser" },
{ "caption": "GitHub: Update Gist", "command": "update_gist" },
{ "caption": "GitHub: Switch Accounts", "command": "switch_accounts" },
{ "caption": "GitHub: Copy Remote URL to Clipboard", "command": "copy_remote_url" },
{ "caption": "GitHub: Copy Remote URL to Clipboard (default branch)", "command": "copy_remote_url_default" },
{ "caption": "GitHub: Copy Remote URL to Clipboard (permalink)", "command": "copy_remote_url_permalink" },
{ "caption": "GitHub: Open Remote URL in Browser", "command": "open_remote_url" },
{ "caption": "GitHub: Open Remote URL in Browser (default branch)", "command": "open_remote_url_default" },
{ "caption": "GitHub: Open Remote URL in Browser (permalink)", "command": "open_remote_url_permalink" },
{ "caption": "GitHub: View", "command": "open_remote_url"},
{ "caption": "GitHub: View (default branch)", "command": "open_remote_url_default"},
{ "caption": "GitHub: View (permalink)", "command": "open_remote_url_permalink"},
{ "caption": "GitHub: Blame", "command": "blame"},
{ "caption": "GitHub: Blame (default branch)", "command": "blame_default"},
{ "caption": "GitHub: Blame (permalink)", "command": "blame_permalink"},
{ "caption": "GitHub: History", "command": "history"},
{ "caption": "GitHub: History (default branch)", "command": "history_default"},
{ "caption": "GitHub: History (permalink)", "command": "history_permalink"},
{ "caption": "GitHub: Edit", "command": "edit"},
{ "caption": "GitHub: Edit (default branch)", "command": "edit_default"},
{ "caption": "GitHub: Open/Create PR", "command": "open_pull"}
]