home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / pmcstex.zip / install / e-ex.NCS / Profile.erx < prev   
Text File  |  2000-04-16  |  2KB  |  52 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.  
  8. 'link sampactn' /* load support for syntax hilighting */
  9.  
  10. 'expand on'     /* syntax assistance on */
  11. 'cstex_highlight_all S'
  12.   /* The command above ensures that syntax highliting is on for all files loaded */
  13.   /* from the command line (i.e. not from within EPM; see  'a_togl_hilit S')     */
  14.  
  15. /* Rexx example of accelerator key definition */
  16.    AF_CHAR        =   1   /* key style constants */
  17.    AF_VIRTUALKEY  =   2
  18.    AF_SCANCODE    =   4
  19.    AF_SHIFT       =   8
  20.    AF_CONTROL     =  16
  21.    AF_ALT         =  32
  22.    AF_LONEKEY     =  64
  23.  
  24.    VK_F1        = 32
  25.    VK_ALT       = 11
  26.  
  27. /* ; I prefer pm_keys.e file instead of those. Note: 122=z, 90=Z, 120=x, 88=X
  28. 'buildaccel *' (AF_CHAR + AF_CONTROL)      122 9800 'ma 1 72 1'  
  29. 'buildaccel *' (AF_CHAR + AF_CONTROL)       90 9801 'ma 1 72 1'
  30. 'buildaccel *' (AF_CHAR + AF_ALT)          120 9804 'ma 1 82 1'
  31. 'buildaccel *' (AF_CHAR + AF_ALT)           88 9805 'ma 1 82 1'
  32. 'activateaccel'     No argument => use current table name.
  33. */
  34.  
  35. /* WANT_CHAR_OPS=1 */
  36.  
  37. /* unix format of the text files (only LF) by default: */
  38. /* 'universal default_save_options /u' */
  39.  
  40. 'ma 1 1599 1'   /* this declares margins */
  41. 'tabkey on'     /* tabulators on */
  42.  
  43. /* options for make file backup before save */
  44. /*
  45. 'backup_enable 1'
  46. 'backup_enable 0'
  47. 'set_backup_extensions'
  48. 'set_backup_extensions AWK C CC CPP HTML TEX'
  49. */
  50.  
  51. /* end of Profile.erx */
  52.