forked from martin-pabst/Online-IDE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshortcuts.html
259 lines (239 loc) · 12 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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Java-Online: API-Dokumentation</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='assets/fonts/fonts.css'>
<link rel='stylesheet' type='text/css' media='screen' href='assets/css/shortcuts.css'>
<script src="lib/jquery/jquery-3.3.1.js"></script>
<!-- <script src="js/runtimelibrary/graphics/SpriteLibrary.js"></script> -->
<!-- <script src='js/help/ApiDoc.js' type="module"></script> -->
</head>
<body>
<div id="outer">
<div id="outer-heading">
<div>Java-Online: Keyboard-Shortcuts</div>
</div>
<div id="outer-bottom">
<div id="main">
<div class="jo_heading">Allgemein</div>
<table>
<tr>
<td class="jo_key">F1</td>
<td class="jo_explanation">Öffnet die Eingabeleiste für Editor-Befehle</td>
</tr>
<tr>
<td class="jo_key">Strg + Mausrad</td>
<td class="jo_explanation">Editor-Zoom</td>
</tr>
<tr>
<td class="jo_key">F11</td>
<td class="jo_explanation">Vollbild ein/aus</td>
</tr>
</table>
<div class="jo_heading">Programm starten/debuggen</div>
<table>
<tr>
<td class="jo_key">F4</td>
<td class="jo_explanation">Programm starten/pausieren</td>
</tr>
<!-- <tr>
<td class="jo_key">F4</td>
<td class="jo_explanation">Programm stoppen und zurücksetzen</td>
</tr> -->
<tr>
<td class="jo_key">F6</td>
<td class="jo_explanation">Einzelschritt (Step over)</td>
</tr>
<tr>
<td class="jo_key">F7</td>
<td class="jo_explanation">Einzelschritt (Step into)</td>
</tr>
<!-- <tr>
<td class="jo_key">F9</td>
<td class="jo_explanation">Step out (führe aus bis die aktuelle Methode verlassen worden ist)</td>
</tr>
<tr>
<td class="jo_key">F10</td>
<td class="jo_explanation">Restart</td>
</tr> -->
</table>
<div class="jo_heading">Grundlegendes Editieren</div>
<table>
<tr>
<td class="jo_key">Strg + X</td>
<td class="jo_explanation">Ausschneiden (ganze Zeile, falls nichts markiert)</td>
</tr>
<tr>
<td class="jo_key">Strg + C</td>
<td class="jo_explanation">In die Zwischenablage kopieren (ganze Zeile, falls nichts markiert)</td>
</tr>
<tr>
<td class="jo_key">Alt + Pfeil oben/unten</td>
<td class="jo_explanation">Den markierten Bereich (bzw. die aktuelle Zeile, falls nichts markiert)
nach oben/unten verschieben</td>
</tr>
<tr>
<td class="jo_key">Shift + Alt + Pfeil oben/unten</td>
<td class="jo_explanation">Den markierten Bereich (bzw. die aktuelle Zeile, falls nichts markiert)
nach oben/unten verdoppeln</td>
</tr>
<tr>
<td class="jo_key">Strg + Shift + K</td>
<td class="jo_explanation">Die ganze Zeile löschen</td>
</tr>
<tr>
<td class="jo_key">Strg + Enter</td>
<td class="jo_explanation">Eine Zeile unterhalb des Cursors einfügen</td>
</tr>
<tr>
<td class="jo_key">Strg + Shift + Enter</td>
<td class="jo_explanation">Eine Zeile oberhalb des Cursors einfügen</td>
</tr>
<tr>
<td class="jo_key">Strg + K</td>
<td class="jo_explanation">Finde die korrespondierende Klammer</td>
</tr>
<tr>
<td class="jo_key">Pos1 / Ende</td>
<td class="jo_explanation">Gehe an den Beginn/ans Ende der Zeile</td>
</tr>
<tr>
<td class="jo_key">Strg + Pos1 / Strg + Ende</td>
<td class="jo_explanation">Gehe an den Beginn/ans Ende der Datei</td>
</tr>
<tr>
<td class="jo_key">Strg + Pfeil auf/ab</td>
<td class="jo_explanation">Scrolle rauf/runter ohne die Cursorposition zu ändern</td>
</tr>
<tr>
<td class="jo_key">Alt + Bild auf/Bild ab</td>
<td class="jo_explanation">Blättere eine Seite rauf/runter ohne die Cursorposition zu ändern</td>
</tr>
<tr>
<td class="jo_key">Strg + # und Strg + ,</td>
<td class="jo_explanation">Kommentiere den markierten Bereich/die Zeile ein/aus</td>
</tr>
<tr>
<td class="jo_key">Shift + Alt + A</td>
<td class="jo_explanation">Blockkommentar ein/aus</td>
</tr>
<tr>
<td class="jo_key">Strg + G</td>
<td class="jo_explanation">Gehe zu Zeile...</td>
</tr>
</table>
<div class="jo_heading">Suchen/Ersetzen</div>
<table>
<tr>
<td class="jo_key">Strg + F</td>
<td class="jo_explanation">Suchen ("find")</td>
</tr>
<tr>
<td class="jo_key">Strg + H</td>
<td class="jo_explanation">Suchen und Ersetzen</td>
</tr>
<tr>
<td class="jo_key">F3/Shift + F3</td>
<td class="jo_explanation">Finde nächstes/vorhergehendes</td>
</tr>
<tr>
<td class="jo_key">Alt + Enter</td>
<td class="jo_explanation">Markiere alle Fundstellen und setze je einen Cursor rein</td>
</tr>
</table>
<div class="jo_heading">Arbeiten mit mehreren Cursorn gleichzeitig</div>
<table>
<tr>
<td class="jo_key">Strg + D</td>
<td class="jo_explanation">Markiere etwas -> Strg + D findet das nächste Vorkommen und setzt einen
zusätzlichen Cursor rein</td>
</tr>
<tr>
<td class="jo_key">Alt + Click</td>
<td class="jo_explanation">Füge einen weiteren Cursor ein</td>
</tr>
<tr>
<td class="jo_key">Strg + Alt + Pfeil rauf/runter</td>
<td class="jo_explanation">Füge einen weiteren Cursor eine Zeile drüber/drunter ein</td>
</tr>
<tr>
<td class="jo_key">Strg + U</td>
<td class="jo_explanation">Mache die letzte Cursoraktion rückgängig</td>
</tr>
<tr>
<td class="jo_key">Shift + Alt + I</td>
<td class="jo_explanation">Füge je einen Cursor am Ende jeder markierten Zeile ein</td>
</tr>
<tr>
<td class="jo_key">Wort selektieren, dann Strg + Shift + L</td>
<td class="jo_explanation">Selektiere jedes Vorkommen dieses Wortes im ganzen Text und füge je
einen Cursor ein</td>
</tr>
<tr>
<td class="jo_key">Strg + F2</td>
<td class="jo_explanation">Selektiere jedes Vorkommen des aktuellen Wortes im ganzen Text und füge
je einen Cursor ein</td>
</tr>
</table>
<div class="jo_heading">Text selektieren</div>
<table>
<tr>
<td class="jo_key">Shift + Pfeiltasten</td>
<td class="jo_explanation">Selektiere zeichenweise</td>
</tr>
<tr>
<td class="jo_key">Shift + Strg + Pfeiltasten</td>
<td class="jo_explanation">Selektiere wortweise</td>
</tr>
<tr>
<td class="jo_key">Strg + L</td>
<td class="jo_explanation">Selektiere die aktuelle Zeile</td>
</tr>
<tr>
<td class="jo_key">Shift + Alt + Pfeil rechts/links</td>
<td class="jo_explanation">Aktuelle Selektion intelligent erweitern/verkleinern</td>
</tr>
<tr>
<td class="jo_key">Shift + Alt + Mit der Maus selektieren</td>
<td class="jo_explanation">Selektion eines rechteckigen Textbereiches</td>
</tr>
<tr>
<td class="jo_key">Strg + Shift + Alt + Pfeiltasten</td>
<td class="jo_explanation">Selektion eines rechteckigen Textbereiches</td>
</tr>
</table>
<div class="jo_heading">Programmierhilfen</div>
<table>
<tr>
<td class="jo_key">Strg + Leertaste</td>
<td class="jo_explanation">Vorschläge machen (kontextsensitive Hilfe)</td>
</tr>
<tr>
<td class="jo_key">Strg + Shift + Leertaste</td>
<td class="jo_explanation">Parametervorschläge machen</td>
</tr>
<tr>
<td class="jo_key">Shift + Alt + F</td>
<td class="jo_explanation">Programm schön formatieren</td>
</tr>
<tr>
<td class="jo_key">F12</td>
<td class="jo_explanation">Geh zur Definition des Symbols, in dem der Cursor gerade steht</td>
</tr>
<tr>
<td class="jo_key">Alt + F12</td>
<td class="jo_explanation">Öffne kleines "Peek-Fenster", in dem die Definition des aktuellen Symbols gezeigt wird</td>
</tr>
<tr>
<td class="jo_key">F2</td>
<td class="jo_explanation">Benenne das Symbol um, in dem der Cursor steht und berücksichtige dabei alle weiteren Vorkommen des Symbols.</td>
</tr>
</table>
</div>
</div>
</div>
</body>
</html>