forked from kemayo/sublime-text-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.sublime-menu
48 lines (48 loc) · 1.89 KB
/
Main.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
[
{
"id": "tools",
"children":
[
{
"caption": "Git",
"children":
[
{
"caption": "This file",
"children":
[
{ "caption": "Log", "command": "git_log" }
,{ "caption": "Diff", "command": "git_diff" }
,{ "caption": "Add", "command": "git_add" }
,{ "caption": "Quick Commit", "command": "git_quick_commit" }
,{ "caption": "Blame", "command": "git_blame" }
,{ "caption": "Checkout", "command": "git_checkout" }
,{ "caption": "Graph", "command": "git_graph" }
]
}
,{
"caption": "Whole repo",
"children":
[
{ "caption": "Log", "command": "git_log_all" }
,{ "caption": "Diff", "command": "git_diff_all" }
,{ "caption": "Graph", "command": "git_graph_all" }
,{ "caption": "Add...", "command": "git_add_choice" }
]
}
,{
"caption": "Stash",
"children":
[
{ "caption": "Save", "command": "git_stash" }
,{ "caption": "Pop", "command": "git_stash_pop" }
]
}
,{ "caption": "-" }
,{ "caption": "Status...", "command": "git_status" }
,{ "caption": "Branches...", "command": "git_branch" }
]
}
]
}
]