https://github.com/lennarthennigs/turbo-pascal-mac-shotcuts
up to date shortcuts for the Borland Turbo Pascal 7 IDE
https://github.com/lennarthennigs/turbo-pascal-mac-shotcuts
borland borland-pascal ide turbo-pascal
Last synced: 8 months ago
JSON representation
up to date shortcuts for the Borland Turbo Pascal 7 IDE
- Host: GitHub
- URL: https://github.com/lennarthennigs/turbo-pascal-mac-shotcuts
- Owner: LennartHennigs
- Created: 2021-08-31T20:42:25.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-09-09T06:57:23.000Z (about 4 years ago)
- Last Synced: 2024-12-30T04:41:24.614Z (9 months ago)
- Topics: borland, borland-pascal, ide, turbo-pascal
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# turbo-pascal-mac-shotcuts
## Description
This is a _Turbo Pascal Marcro Language_ file that adds current DOS/Mac-like Keyboard shortcuts to Borland's Turbo Pascal 7.0 IDE.
## How to install
- Go to the bin folder of your TP7 installation
- Run `TEMC.EXE MAC.TEM TURBO.TP`
- This will add the shortcuts to the (default) TURBO.TP settings file
- Afterwards the shortcuts will work, even though they will not be shown in the dropdown menus## Why?
Because I found old Pascal programs of mine and using the IDE was a neat but pain. So I decided to fix it.## Shortcuts
```
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;
```