home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Black Box 4
/
BlackBox.cdr
/
progpas
/
visible.arj
/
KEYDFINE
< prev
next >
Wrap
Text File
|
1985-08-08
|
384b
|
13 lines
PROGRAM KEYDFINE; {this defines Ctrl-A to be " := " }
CONST
ESC = 27; {value of escape key}
BEGIN
WRITE(CHR(ESC), '[1;" := "p');
END.
{using this technique and chapter 13 of the DOS manual,
{you can make your own key redefinitions. For example, you
{can change the assignment of function keys in the editor...}