-
Notifications
You must be signed in to change notification settings - Fork 225
/
Main.sublime-menu
146 lines (146 loc) · 4.99 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
[
{
"caption": "Edit",
"mnemonic": "E",
"id": "edit",
"children":
[
{ "caption": "-" },
{
"caption": "Revert Change to Commit",
"command": "git_gutter_revert_change"
},
{
"caption": "Copy Content from Commit",
"command": "git_gutter_copy_from_commit"
},
{ "caption": "-" }
]
},
{
"caption": "View",
"mnemonic": "V",
"id": "view",
"children":
[
{
"caption": "GitGutter",
"children":
[
{
"caption": "Enabled for View",
"command": "git_gutter_enable_view"
},
{ "caption": "-" },
{
"caption": "Show Line Annotation",
"command": "git_gutter_blame"
},
{
"caption": "Show Diff Popup",
"command": "git_gutter_diff_popup"
},
{
"caption": "Show Comparing Against",
"command": "git_gutter_show_compare"
},
{ "caption": "-" },
{
"caption": "Compare Against HEAD",
"command": "git_gutter_compare_head"
},
{
"caption": "Compare Against Origin",
"command": "git_gutter_compare_origin"
},
{
"caption": "Compare Against Commit",
"command": "git_gutter_compare_commit"
},
{
"caption": "Compare Against File Commit",
"command": "git_gutter_compare_file_commit"
},
{
"caption": "Compare Against Branch",
"command": "git_gutter_compare_branch"
},
{
"caption": "Compare Against Tag",
"command": "git_gutter_compare_tag"
}
]
}
]
},
{
"caption": "Goto",
"mnemonic": "G",
"id": "goto",
"children":
[
{
"caption": "Goto Previous Git Difference",
"command": "git_gutter_prev_change"
},
{
"caption": "Goto Next Git Difference",
"command": "git_gutter_next_change"
},
{ "caption": "-" }
]
},
{
"caption": "Preferences",
"mnemonic": "n",
"id": "preferences",
"children":
[
{
"caption": "Package Settings",
"mnemonic": "P",
"id": "package-settings",
"children":
[
{
"caption": "GitGutter",
"children":
[
{
"caption": "Settings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/GitGutter/GitGutter.sublime-settings",
"default": "// GitGutter Settings - User\n{\n\t$0\n}\n"
}
},
{ "caption": "-" },
{
"caption": "Key Bindings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/GitGutter/Default (${platform}).sublime-keymap",
"default": "// Key Bindings - User\n[\n\t$0\n]\n"
}
},
{ "caption": "-" },
{
"caption": "Popup Stylesheet",
"command": "edit_settings",
"args": {
"base_file": "${packages}/GitGutter/gitgutter_popup.css",
"default": "/* GitGutter Popup Stylesheet - User */\n\n"
}
},
{ "caption": "-" },
{
"caption": "Support Info",
"command": "git_gutter_support_info"
}
]
}
]
}
]
}
]