-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy patheditor.html
executable file
·233 lines (167 loc) · 5.73 KB
/
editor.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
<HTML>
<HEAD>
<TITLE>Editor</TITLE>
<META name="description" content="Source Code Editor">
<META name="keywords" content="source, code, editor">
</HEAD>
<BODY>
<FONT FACE="Verdana" SIZE=3>
<FONT SIZE=+2>
<B>Source Code Editor</B>
</FONT>
<HR>
<BR><BR>
<B>Using the Mouse</B><BR><BR>
Editor supports the following mouse actions:<BR><BR>
<FONT FACE="Fixedsys">
<TABLE BORDER=1 WIDTH=100% CELLPADDING=7>
<TR>
<TD BGCOLOR=YELLOW>Mouse Action </TD><TD BGCOLOR=YELLOW> Result </TD>
</TR>
<TR>
<TD WIDTH=70%>L-Button click over text </TD><TD> Changes the caret position
</TR>
<TR>
<TD>R-Button click </TD><TD> Displays the right click menu
</TR>
<TR>
<TD>L-Button down over selection, and drag </TD><TD> Moves text
</TR>
<TR>
<TD>Ctrl + L-Button down over selection, and drag</TD><TD> Copies text
</TR>
<TR>
<TD>L-Button click over left margin </TD><TD> Selects line
</TR>
<TR>
<TD>L-Button click over left margin, and drag </TD><TD> Selects multiple lines
</TR>
<TR>
<TD>Alt + L-Button down, and drag </TD><TD> Select columns of text
</TR>
<TR>
<TD>L-Button double click over text </TD><TD> Select word under cursor
</TR>
<TR>
<TD>Spin IntelliMouse mouse wheel </TD><TD> Scroll the window vertically
</TR>
<TR>
<TD>Single click IntelliMouse mouse wheel </TD><TD> Select the word under the cursor
</TR>
<TR>
<TD>Double click IntelliMouse mouse wheel </TD><TD> Select the line under the cursor
</TR>
<TR>
<TD>Click and drag splitter bar </TD><TD> Split the window into multiple views or adjust the current splitter position
</TR>
<TR>
<TD>Double click splitter bar </TD><TD> Split the window in half into multiple views or unsplit the window if already split
</TR>
</TABLE>
</FONT>
<BR><BR>
<HR>
<BR><BR>
<B>Editor Hot Keys</B>:
<BR>
<PRE><FONT FACE="Fixedsys">
Command Keystroke
=======================================================================
Toggle Bookmark Control + F2
Next Bookmark F2
Prev Bookmark Shift + F2
Copy Control + C, Control + Insert
Cut Control + X, Shift + Delete, Control + Alt + W
Cut Line Control + Y
Cut Sentence Control + Alt + K
Paste Control + V, Shift + Insert
Undo Control + Z, Alt + Backspace
Document End Control + End
Document End Extend Control + Shift + End
Document Start Control + Home
Document Start Extend Control + Shift + Home
Find Control + F, Alt + F3
Find Next F3
Find Next Word Control + F3
Find Prev Shift + F3
Find Prev Word Control + Shift + F3
Find and Replace Control + H, Control + Alt + F3
Go To Line Control + G
Go To Match Brace Control + ]
Select All Control + A
Select Line Control + Alt + F8
Select Swap Anchor Control + Shift + X
Insert New Line Above Control + Shift + N
Indent Selection Tab
Outdent Selection Shift + Tab
Tabify Selection Control + Shift + T
Untabify Selection Control + Shift + Space
Lowercase Selection Control + L
Uppercase Selection Control + U, Control + Shift + U
Left Word Control + Left
Right Word Control + Right
Left Sentence Control + Alt + Left
Right Sentence Control + Alt + Right
Toggle Overtype Insert
Display Whitespace Control + Alt + T
Scroll Window Up Control + Down
Scroll Window Down Control + Up
Scroll Window Left Control + PageUp
Scroll Window Right Control + PageDown
Delete Word To End Control + Delete
Delete Word To Start Control + Backspace
Extend Char Left Shift + Left
Extend Char Right Shift + Right
Extend Left Word Control + Shift + Left
Extend Right Word Control + Shift + Right
Extend to Line Start Shift + Home
Extend to Line End Shift + End
Extend Line Up Shift + Up
Extend Line Down Shift + Down
Extend Page Up Shift + PgUp
Extend Page Down Shift + Next
Comment Block Ctrl + Q
Uncomment Block Ctrl + W
</FONT></PRE>
<HR>
<BR><BR>
<b>regular expression syntax rules for search and replace</b>
<PRE><FONT FACE="Fixedsys">
wildcards:
? (for any character),
+ (for one or more ot something),
* (for zero or more of something).
sets of characters:
characters enclosed in square brackets
will be treated as an option set.
character ranges may be specified
with a - (e.g. [a-c]).
logical OR:
subexpressions may be ORed together
with the | pipe symbol.
rarenthesized subexpressions:
a regular expression may be enclosed
within parentheses and will be treated as a unit.
escape characters:
sequences such as:
\t - tab
etc.
will be substituted for an equivalent
single character. \\ represents the backslash.
</FONT></PRE>
<HR>
<BR>
If there are problems with the source editor
you may need to manually copy "<B>cmax20.ocx</B>"
from program's folder into <B>Windows\System</B> or <B>Windows\System32</B>
replacing any existing version of
that file (restart may be required before
system allows to replace existing file).
<BR><BR>
<HR>
<BR>
Portions Copyright 1997-2005 Barry Allyn. All rights reserved.
</FONT>
<BR>
</BODY>
</HTML>