home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0010 - 0019 / ibm0010-0019 / ibm0010.tar / ibm0010 / REFLECT.ZIP / ENH3.KBM < prev    next >
Encoding:
Text File  |  1989-06-15  |  1.3 KB  |  39 lines

  1. ;**********************************************************************
  2. ;  Name:    ENH3.KBM
  3. ;  Keyboard:    Enhanced
  4. ;  Description:
  5. ;    This definition maps the pf1, pf2, pf3, and pf4 functions to
  6. ;    the four keys on the top row of the numeric keypad key block.
  7. ;    You will still be able to toggle num lock by using either the
  8. ;    shift num-lock or the alt num-lock keystrokes.
  9. ;
  10. ;    The VT terminal HELP and DO key functions are mapped to the
  11. ;    print-screen and scroll-lock keys.  The functions of other
  12. ;    print-screen keystrokes are:
  13. ;          alt print-screen = (Reflection) print-screen
  14. ;         ctrl print-screen = toggle-print-logging
  15. ;        shift print-screen = DOS print screen
  16. ;    The hold-screen function is mapped to the pause key.
  17. ;**********************************************************************
  18.  
  19. keyboard-id = ENHANCED
  20.  
  21. set num-lock on
  22.  
  23. ;---  Map the VT100 keypad onto the Enhanced keyboard's keypad.
  24.  
  25.        num-lock     =  vt-pf1        ; shift num-lock still toggles numlock
  26.        kp-slash     =  vt-pf2
  27.        kp-star        =  vt-pf3
  28.        kp-minus     =  vt-pf4
  29.  
  30.        kp-enter     =  vt-enter
  31.        kp-plus        =  vt-minus
  32. shift  kp-plus        =  vt-comma
  33.  
  34. ;--- Map HELP, DO and HOLD SCREEN.
  35.  
  36.     print-screen = vt-f15        ; HELP
  37.     scroll-lock =  vt-f16        ; DO
  38.     pause        =  hold-screen    ; (ctrl pause is still host-break)
  39.