-
Notifications
You must be signed in to change notification settings - Fork 29
/
shortcuts.html
244 lines (232 loc) · 7.63 KB
/
shortcuts.html
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<!DOCTYPE html>
<!--
Copyright (c) 2020, Phil Rymek
All rights reserved.
@date 11/27/2016
@description ASIDE.IO Shortcuts
-->
<html>
<head>
<link rel="shortcut icon" href="images/favicon.ico" />
<title>ASIDE.IO Shortcuts</title>
<link href="css/help.css?v=1.0.2" rel="stylesheet" type="text/css" />
<script src="js/jquery/jquery.min.js?v=1.0.2"></script>
<script src="js/d3v/d3vHelp.js?v=1.0.2"></script>
</head>
<body>
<div class="main">
<div class="header">
<div class="header-top">
<h1>ASIDE.IO Shortcuts</h1>
</div>
<div class="header-bottom">
<a class="nav-link" href="/about">[about]</a>
<a class="nav-link" href="/help">[help]</a>
<a class="nav-link" href="/new_instance">[instance]</a>
<a class="nav-link" href="/login">[login]</a>
<a class="nav-link" href="/shortcuts">[shortcuts]</a>
<a class="nav-link" href="/updates">[updates]</a>
<span class="title-block"></span>
<span class="nav-link scroller" href="#data">data</span>
<span class="nav-link scroller" href="#code">code</span>
<span class="nav-link scroller" href="#globals">globals</span>
<span class="nav-link scroller" href="#overview">overview</span>
</div>
</div>
<h2 id="overview" class="mt4 title-item">Overview</h2>
<div class="mt4 text-block">
The shortcuts available for use within ASIDE are listed below.
Shortcuts shown in the <span class="term">globals</span> section can be used at
anytime, but shortcuts listed for a specific screen (<span class="term">code</span>, <span class="term">data</span>) only work on those screens. For other help, see the <a class="text-link" href="/help">help</a> section.
</div>
<h2 id="globals" class="mt4 title-item">Global Shortcuts</h2>
<h3 class="mt1">Work anywhere within ASIDE</h3>
<table class="shortcuts mt4">
<thead>
<tr>
<th>Shortcut</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="mod-key">⌘</span> + shift + l</td>
<td>opens the debug log list in the right panel</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + i</td>
<td>open a new instance of ASIDE</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + o</td>
<td>open the context of ASIDE within salesforce</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + 6</td>
<td>switch to "code" screen</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + 7</td>
<td>switch to "test" screen</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + 8</td>
<td>switch to "push" screen</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + 9</td>
<td>switch to "data" screen</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + x</td>
<td>logout of ASIDE</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + p</td>
<td>open options</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + 0</td>
<td>open help documentation</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + h</td>
<td>open shortcuts documentation</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + u</td>
<td>open open user detail page</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + v</td>
<td>toggle salesforce's development mode on and off</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + ,</td>
<td>save the state of the ASIDE tabs you have open</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + .</td>
<td>load the saved tab state for the current org</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + \</td>
<td>resets ASIDE to its default stylesheet</td>
</tr>
<tr>
<td>esc</td>
<td>close top popup / panel</td>
</tr>
</tbody>
</table>
<h2 id="code" class="mt4 title-item">Code Section Shortcuts</h2>
<h3 class="mt1">Shortcuts which only work from the code screen</h3>
<table class="shortcuts mt4">
<thead>
<tr>
<th>Shortcut</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="mod-key">⌘</span> + s</td>
<td>save the current file (or executes anonymous when in that mode)</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + f</td>
<td>opens panel to find within current file</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + h</td>
<td>opens panel to find within all code in the org</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + g</td>
<td>if the current file is a test class, runs the unit tests within it. if the current file is a package xml, performs a retrieve using that package</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + ;</td>
<td>get code coverage for the current file</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + ;</td>
<td>toggle code coverage highlights on/off</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + u</td>
<td>for apex and visualforce, updates the open file's version number. for static resources updates the open file's content type</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + k</td>
<td>deletes the current file from the server</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + r</td>
<td>repeats the last action taken</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + j</td>
<td>navigates to the selected apex class, sobject, or visualforce tag in a new tab</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + b</td>
<td>jumps focus to the command typeahead</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + l</td>
<td>open local file history</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + e</td>
<td>rename current file name</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + d</td>
<td>download editor contents</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + c</td>
<td>toggle dual editors</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + a</td>
<td>toggle diff highlights on/off</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + b</td>
<td>beautify HTML, VF, CSS, JS (works on Apex too, but more of an uglifier)</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + f</td>
<td>generate wsdl</td>
</tr>
<tr>
<td><span class="mod-key">⌘</span> + shift + y</td>
<td>open lightning bundle popup</td>
</tr>
<tr>
<td>ctrl + space</td>
<td>get autocomplete suggestions</td>
</tr>
</tbody>
</table>
<h2 id="data" class="mt4 title-item">Data Section Shortcuts</h2>
<h3 class="mt1">Shortcuts which only work from the data screen</h3>
<table class="shortcuts mt4">
<thead>
<tr>
<th>Shortcut</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="mod-key">⌘</span> + s</td>
<td>execute the query in the query input</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>