-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditor-shortcuts.html
168 lines (167 loc) · 4.59 KB
/
editor-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
---
meta-title: "Partial list of Delphi Pascal IDE shortcut keys"
meta-desc: "Partial list of Delphi Pascal IDE shortcut keys, based on the default key mapping of the Delphi 2006 IDE."
---
<article>
<h1>Delphi IDE Editor Keyboard Shortcuts</h1>
<p>These keyboard shortcuts were valid as of Delphi 2006, using the default key mapping.</p>
<div class="table-responsive">
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Key combination</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="text-smallcaps">Ctrl+Jccc</span></td>
<td>Invoke code templates</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+T</span></td>
<td>Delete current word</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+E</span></td>
<td>Incremental search</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+Y</span></td>
<td>Delete current line</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+O+C</span></td>
<td>Select a columnar block of text</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+O+L</span></td>
<td>Normal text selection mode (use to return to normal selection behaviour after using <span class="text-smallcaps">Ctrl+O+C</span>)</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+Shift+G</span></td>
<td>Insert a new GUID at the cursor position</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+Shift+I</span></td>
<td>Indent the current selected block</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+Shift+U</span></td>
<td>Outdent the current selected block</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+Shift+Y</span></td>
<td>Delete to the end of line</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+Shift+J</span></td>
<td>Invoke syncedit</td>
</tr>
<tr>
<td><span class="text-smallcaps">Alt+[</span></td>
<td>Match pair forward</td>
</tr>
<tr>
<td><span class="text-smallcaps">Alt+]</span></td>
<td>Match pair backward</td>
</tr>
<tr>
<td><span class="text-smallcaps">Alt+RightArrow</span></td>
<td>Browse forward (hotlink history)</td>
</tr>
<tr>
<td><span class="text-smallcaps">Alt+LeftArrow</span></td>
<td>Browse backward (hotlink history)</td>
</tr>
<tr>
<td><span class="text-smallcaps">Alt+UpArrow</span></td>
<td>Browse to symbol under editor cursor (invoke a hotlink and add it to the hotlink history)</td>
</tr>
<tr>
<td><span class="text-smallcaps">F4</span></td>
<td>Run program to current cursor position</td>
</tr>
<tr>
<td><span class="text-smallcaps">F5</span></td>
<td>Toggle breakpoint</td>
</tr>
<tr>
<td><span class="text-smallcaps">F7</span></td>
<td>Debugger step into</td>
</tr>
<tr>
<td><span class="text-smallcaps">F8</span></td>
<td>Debugger step over</td>
</tr>
<tr>
<td><span class="text-smallcaps">F9</span></td>
<td>Run program under debugger</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+F12</span></td>
<td>View units</td>
</tr>
<tr>
<td><span class="text-smallcaps">Alt+G</span></td>
<td>Goto line number in editor</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+Shift+R</span></td>
<td>Start/Stop recording editor macro</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+Shift+P</span></td>
<td>Play editor macro</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+Space</span></td>
<td>Invoke code completion</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+Shift+Space</span></td>
<td>Invoke code parameter hints</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+Enter</span></td>
<td>Open file at cursor</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+Shift+C</span></td>
<td>Invoke class completion for the class that currently contains the cursor</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+Shift+UpArrow</span></td>
<td>Navigate to method implementation/declaration</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+Shift+DownArrow</span></td>
<td>Navigate to method implementation/declaration</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+Alt+UpArrow</span></td>
<td>Navigate to previous method implementation in lexical order</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+Alt+DownArrow</span></td>
<td>Navigate to next method implementation in lexical order</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+Alt+Home</span></td>
<td>Navigate to the lexically first method implementation in this source unit</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+Alt+End</span></td>
<td>Navigate to the lexically last method implementation in this source unit</td>
</tr>
<tr>
<td><span class="text-smallcaps">Ctrl+/</span></td>
<td>Toggle comment per line or selected block</td>
</tr>
</tbody>
</table>
</div> <!-- /.table-responsive -->
</article>
<nav>
<p>Back to the <a href="./index">Delphi Notes</a> page.</p>
</nav>