-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMAC.TEM
57 lines (42 loc) · 1.19 KB
/
MAC.TEM
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
/*
------------------------------------------------------------
More modern (Mac) Keyboard Shortcuts
for the Turbo Pascal 7.0 IDE
L. Hennigs - 08/21
This will add more current keyboard shortcurs to the IDE.
How to install:
TEMC.EXE MAC.TEM TURBO.TP
For more details see
- https://pl.wikipedia.org/wiki/Teml
- http://pascal.net.ru/TEML-predefined-editor-commands+(en)
- https://studfile.net/preview/1512545/
------------------------------------------------------------
*/
MACRO M_SelectAll /* CTRL-a */
HomeCursor;
SetBlockBeg;
EndCursor;
SetBlockEnd;
END;
CTRL-x: ClipCut;
CTRL-c: ClipCopy;
CTRL-v: ClipPaste;
CTRl-BkSp: DeleteBlock;
ESC: HideBlock;
CTRL-a: M_SelectAll;
CTRL-o: OpenFile;
CTRL-n: OpenFile; /* better than nothing */
CTRL-d: ChangeDirectory; /* not standard */
CTRL-s: SaveFile;
CTRL-w: CloseWindow;
CTRL-q: Quit;
CTRL-f: GetFindString;
CTRL-g: RepeatSearch;
CTRL-r: RunProgram;
CTRL-z: UnDo;
CTRL-Z: ReDo;
/*
todo:
CRTl-SHIFT-ArLe Select to beginning of line
CRTl-SHIFT-ArRi Select to end of line
*/