-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-commands
228 lines (228 loc) · 5.4 KB
/
Default.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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
[
// tmp
{
"caption": "Gitlab: Reset connection",
"command": "st_gitlab_reset"
},
{
"caption": "Gitlab: Save edit",
"command": "editbox_save"
},
// issue
{
"caption": "Gitlab issue: Open",
"command": "st_gitlab_issue"
},
{
"caption": "Gitlab issue: Create",
"command": "st_gitlab_issue_create"
},
{
"caption": "Gitlab issue: Delete",
"command": "st_gitlab_issue_delete"
},
{
"caption": "Gitlab issue: Change project",
"command": "st_gitlab_change_project"
},
{
"caption": "Gitlab issue: Create branch",
"command": "st_gitlab_issue_create_branch"
},
// merge-request
{
"caption": "Gitlab merge: Open",
"command": "st_gitlab_merge"
},
{
"caption": "Gitlab merge: Toggle WIP",
"command": "st_gitlab_merge_toggle_wip"
},
{
"caption": "Gitlab merge: Accept",
"command": "st_gitlab_merge_accept"
},
{
"caption": "Gitlab merge request: Delete",
"command": "st_gitlab_merge_delete"
},
// pipeline
{
"caption": "Gitlab pipeline: Open",
"command": "st_gitlab_pipeline"
},
{
"caption": "Gitlab pipeline: Cancel",
"command": "st_gitlab_pipeline_cancel"
},
{
"caption": "Gitlab pipeline: Retry",
"command": "st_gitlab_pipeline_retry"
},
{
"caption": "Gitlab pipeline: Delete",
"command": "st_gitlab_pipeline_delete"
},
// branch
{
"caption": "Gitlab branch: Toggle protect",
"command": "st_gitlab_branch_toggle_protect"
},
{
"caption": "Gitlab branch: Merge-request",
"command": "st_gitlab_branch_create_merge"
},
//snippet
{
"caption": "Gitlab snippet: Open",
"command": "st_gitlab_snippet"
},
{
"caption": "Gitlab snippet: Create",
"command": "st_gitlab_snippet_create"
},
{
"caption": "Gitlab snippet: Change",
"command": "st_gitlab_snippet_change_file"
},
// any possible object
{
"caption": "Gitlab: Refresh",
"command": "st_gitlab_object_refresh"
},
{
"caption": "Gitlab: Add label",
"command": "st_gitlab_object_add_label"
},
{
"caption": "Gitlab: Remove label",
"command": "st_gitlab_object_remove_label"
},
{
"caption": "Gitlab: Toggle select mode",
"command": "st_gitlab_toggle_selectable"
},
{
"caption": "Gitlab: Toggle system notes",
"command": "st_gitlab_toggle_system_notes"
},
{
"caption": "Gitlab: Add note",
"command": "st_gitlab_object_add_note"
},
{
"caption": "Gitlab: Change note",
"command": "st_gitlab_object_change_note"
},
{
"caption": "Gitlab: Set milestone",
"command": "st_gitlab_object_set_milestone"
},
{
"caption": "Gitlab: Change description",
"command": "st_gitlab_object_change_description"
},
{
"caption": "Gitlab: Change title",
"command": "st_gitlab_object_change_title"
},
{
"caption": "Gitlab: Change property",
"command": "st_gitlab_object_change_any"
},
{
"caption": "Gitlab: Assign to",
"command": "st_gitlab_object_change_assigned"
},
{
"caption": "Gitlab: Change state",
"command": "st_gitlab_object_change_state"
},
{
"caption": "Gitlab: Open in browser",
"command": "st_gitlab_object_in_browser"
},
{
"caption": "Gitlab: Show labels",
"command": "st_gitlab_view_show_labels"
},
{
"caption": "Gitlab: Open Url",
"command": "st_gitlab_util_open_url"
},
{
"caption": "Gitlab: Checkbox toggle",
"command": "st_gitlab_object_check_box_toggle"
},
// project lists: issues, merges, pipelines, etc.
{
"caption": "Gitlab project: List refresh",
"command": "st_gitlab_project_list_refresh"
},
{
"caption": "Gitlab project: Set filter",
"command": "st_gitlab_project_list_filter"
},
{
"caption": "Gitlab project: Add label",
"command": "st_gitlab_project_objects_list_action",
"args": {
"action": "add_label"
}
},
{
"caption": "Gitlab project: Remove label",
"command": "st_gitlab_project_objects_list_action",
"args": {
"action": "del_label"
}
},
{
"caption": "Gitlab project: Previous page",
"command": "st_gitlab_project_list_page",
"args": {
"direction": 0
}
},
{
"caption": "Gitlab project: Next page",
"command": "st_gitlab_project_list_page",
"args": {
"direction": 1
}
},
// project issues
{
"caption": "Gitlab project: Issues",
"command": "st_gitlab_project_issues"
},
{
"caption": "Gitlab project: Issues Board",
"command": "st_gitlab_project_issues_board"
},
// project merge-requests
{
"caption": "Gitlab project: Merge-requests",
"command": "st_gitlab_project_merges"
},
// project pipelines
{
"caption": "Gitlab project: Pipelines",
"command": "st_gitlab_project_pipelines"
},
// project branches
{
"caption": "Gitlab project: Branches",
"command": "st_gitlab_project_branches"
},
// project snippets
{
"caption": "Gitlab project: Snippets",
"command": "st_gitlab_project_snippets"
},
// project snippets
{
"caption": "Gitlab: Users",
"command": "st_gitlab_users"
}
]