home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 24 / CD_ASCQ_24_0995.iso / dos / tools / aurora21 / system.aml < prev    next >
Text File  |  1995-08-10  |  3KB  |  84 lines

  1.  
  2. // -------------------------------------------------------------------
  3. // The Aurora Editor v2.1
  4. // Copyright 1993-1995 nuText Systems. All Rights Reserved Worldwide.
  5. //
  6. // System Settings (included by MAIN.AML)
  7. //
  8. // To change a setting, locate the desired setting in this file and
  9. // type in the new value. Character and string values should be
  10. // enclosed in quotes.
  11. //
  12. // When you are finished, save this file and select 'Recompile the
  13. // Editor' <alt f2> from the Set menu. Exit and re-enter the editor
  14. // for your changes to take effect.
  15. // -------------------------------------------------------------------
  16.  
  17.  
  18.   // disable the video blink mode (disabling the video blink mode
  19.   // allows the use of high intensity background colors)
  20.   blink OFF
  21.  
  22.   // set cursor size in insert and overstrike modes
  23.   cursorsize
  24.      // overstrike mode
  25.      80       // cursor top    (0-99)
  26.      90       // cursor bottom (0-99)
  27.  
  28.      // insert mode
  29.      50       // cursor top    (0-99)
  30.      90       // cursor bottom (0-99)
  31.  
  32.  
  33.   // keyboard options:
  34.   kbdoptions 'egw'
  35.      // e=enable enhanced keyboard
  36.      // g=enable unshifted grey keypad function keys
  37.      //     <grey*>, <grey->, <grey+>
  38.      // w=enable shifted white keypad function keys
  39.      //     <shift del>, <shift ins>, <shift end>, etc.
  40.  
  41.  
  42.   // enable the PC speaker
  43.   speaker ON
  44.  
  45.   // date and time format
  46.   international
  47.      0         // date format
  48.                //   0=mmddyy
  49.                //   1=ddmmyy
  50.                //   2=yymmdd
  51.  
  52.     '-'        // date separator character
  53.  
  54.      0         // time format
  55.                //   0=12hr
  56.                //   1=24hr
  57.                //   2=12hr with seconds
  58.                //   3=24hr with seconds
  59.  
  60.     ':'        // time separator character
  61.  
  62.     ','        // thousands separator character
  63.                //   (null=no separator)
  64.  
  65.  
  66.  
  67.   // system memory settings
  68.  
  69.   maxxms      -1                  // maximum XMS memory (in k) to use:
  70.                                   //    0=none
  71.                                   //   -1=available maximum
  72.  
  73.   maxems      -1                  // maximum EMS memory (in k) to use:
  74.                                   //    0=none
  75.                                   //   -1=available maximum
  76.  
  77.   swapfiles                       // swap files:
  78.      "c:\\aurora@1.swp"           //   primary swap file
  79.      "d:\\aurora@2.swp"           //   secondary swap file
  80.  
  81.   memoptions  'o'                 // memory options:
  82.                                   //   o=allow open files
  83.  
  84.