home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / AUROR21A.ZIP / SYSTEM.AML < prev    next >
Text File  |  1995-09-01  |  3KB  |  83 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.   // keyboard options:
  33.   kbdoptions 'egw'
  34.      // e=enable enhanced keyboard
  35.      // g=enable unshifted grey keypad function keys
  36.      //     <grey*>, <grey->, <grey+>
  37.      // w=enable shifted white keypad function keys
  38.      //     <shift del>, <shift ins>, <shift end>, etc.
  39.  
  40.  
  41.   // enable the PC speaker
  42.   speaker ON
  43.  
  44.   // date and time format
  45.   international
  46.      0         // date format
  47.                //   0=mmddyy
  48.                //   1=ddmmyy
  49.                //   2=yymmdd
  50.  
  51.     '-'        // date separator character
  52.  
  53.      0         // time format
  54.                //   0=12hr
  55.                //   1=24hr
  56.                //   2=12hr with seconds
  57.                //   3=24hr with seconds
  58.  
  59.     ':'        // time separator character
  60.  
  61.     ','        // thousands separator character
  62.                //   (null=no separator)
  63.  
  64.  
  65.  
  66.   // system memory settings
  67.  
  68.   maxxms      -1                  // maximum XMS memory (in k) to use:
  69.                                   //    0=none
  70.                                   //   -1=available maximum
  71.  
  72.   maxems      -1                  // maximum EMS memory (in k) to use:
  73.                                   //    0=none
  74.                                   //   -1=available maximum
  75.  
  76.   swapfiles                       // swap files:
  77.      "c:\\aurora@1.swp"           //   primary swap file
  78.      "d:\\aurora@2.swp"           //   secondary swap file
  79.  
  80.   memoptions  'o'                 // memory options:
  81.                                   //   o=allow open files
  82.  
  83.