-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathContext.sublime-menu
More file actions
25 lines (25 loc) · 1020 Bytes
/
Context.sublime-menu
File metadata and controls
25 lines (25 loc) · 1020 Bytes
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
[
{ "caption": "-" },
{
"caption": "Git",
"children":
[
{ "caption": "Commit...", "command": "git_commit" },
{ "caption": "Commit All...", "command": "git_commit_all" },
{ "caption": "Reset", "command": "git_reset" },
{ "caption": "-" },
{ "caption": "Checkout...", "command": "git_checkout" },
{ "caption": "Add", "command": "git_add" },
{ "caption": "Remove", "command": "git_rm" },
{ "caption": "Move...", "command": "git_mv" },
{ "caption": "-" },
{ "caption": "Diff", "command": "git_diff" },
{ "caption": "Log", "command": "git_log" },
{ "caption": "Status", "command": "git_status" },
{ "caption": "Blame", "command": "git_blame" },
{ "caption": "Fetch", "command": "git_fetch" },
{ "caption": "Pull", "command": "git_pull" },
{ "caption": "Push", "command": "git_push" }
]
}
]