d_win32.rc
author Claus Gittinger <cg@exept.de>
Sat, 12 Sep 1998 16:46:30 +0200
changeset 304 b7ef06173222
child 312 3cee7a37fc4f
permissions -rw-r--r--
*** empty log message ***

"*
 * $Header$
 *
 * ST/X startup configuration file:
 * display configuration - windowsNT / windows95 
 *"

"/
"/ here, fixup the keyboard mapping for
"/ windows feel - especially, change 
"/     cut/copy/paste    from ALT-[XCV] into CTRL-[XCV]
"/     HOME-key from BeginOfText to BeginOfLine
"/     END-key from EndOfText to EndOfLine
"/     F1-key from Again to Help
"/     UserInterrupt now on PAUSE
"/     F8 now on PAUSE

|map|

map := Display keyboardMap.

'd_win32.rc [info]: changing keyboard to win95 defaults...' infoPrintCR.
'd_win32.rc [info]: (CTRL-C is now COPY - unix ST/X users should have a look at d_win32.rc)' infoPrintCR.

map bindValue:#UserInterrupt to:#Pause.
map bindValue:#Copy          to:#Ctrlc.
map bindValue:#Cut           to:#Ctrlx.
map bindValue:#Paste         to:#Ctrlv.
map bindValue:#BeginOfLine   to:#Home.
map bindValue:#EndOfLine     to:#End.

map bindValue:#Help          to:#F1.
map bindValue:#Again         to:#F8.

map bindValue:#Cmdc          to:#Cmdc.
map bindValue:#Cmdx          to:#Cmdx.
map bindValue:#Cmdv          to:#Cmdv.
!