home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / pmcstex.zip / install / e-ex.CS / Profile.erx < prev   
Text File  |  2000-04-16  |  2KB  |  53 lines

  1. /* Firstly, let us link .ex files */
  2.  
  3. 'link pm_keys'  /* my (PM) favourite hot keys */
  4.   /* Note: after some my changes on 4.1.1997, this must be the first file loaded */
  5. 'link pm4epm'   /* pm_expansions and other tools needed by pmCSTeX */
  6. 'link CSTeX'    /* all the pmCSTeX stuff */
  7. 'link czech'    /* load Czech keyboard */
  8.  
  9. 'link sampactn' /* load support for syntax hilighting */
  10.  
  11. 'expand off'     /* syntax assistance off */
  12. 'cstex_highlight_all S'
  13.   /* The command above ensures that syntax highliting is on for all files loaded */
  14.   /* from the command line (i.e. not from within EPM; see  'a_togl_hilit S')     */
  15.  
  16. /* Rexx example of accelerator key definition */
  17.    AF_CHAR        =   1   /* key style constants */
  18.    AF_VIRTUALKEY  =   2
  19.    AF_SCANCODE    =   4
  20.    AF_SHIFT       =   8
  21.    AF_CONTROL     =  16
  22.    AF_ALT         =  32
  23.    AF_LONEKEY     =  64
  24.  
  25.    VK_F1        = 32
  26.    VK_ALT       = 11
  27.  
  28. /* ; I prefer pm_keys.e file instead of those. Note: 122=z, 90=Z, 120=x, 88=X
  29. 'buildaccel *' (AF_CHAR + AF_CONTROL)      122 9800 'ma 1 72 1'  
  30. 'buildaccel *' (AF_CHAR + AF_CONTROL)       90 9801 'ma 1 72 1'
  31. 'buildaccel *' (AF_CHAR + AF_ALT)          120 9804 'ma 1 82 1'
  32. 'buildaccel *' (AF_CHAR + AF_ALT)           88 9805 'ma 1 82 1'
  33. 'activateaccel'     No argument => use current table name.
  34. */
  35.  
  36. /* WANT_CHAR_OPS=1 */
  37.  
  38. /* unix format of the text files (only LF) by default: */
  39. /* 'universal default_save_options /u' */
  40.  
  41. 'ma 1 1599 1'   /* this declares margins */
  42. 'tabkey on'     /* tabulators on */
  43.  
  44. /* options for make file backup before save */
  45. /*
  46. 'backup_enable 1'
  47. 'backup_enable 0'
  48. 'set_backup_extensions'
  49. 'set_backup_extensions AWK C CC CPP HTML TEX'
  50. */
  51.  
  52. /* end of Profile.erx */
  53.