home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / FPC225_1.ZIP / F-PCADJ.TXT < prev    next >
Encoding:
Text File  |  1988-11-05  |  5.2 KB  |  108 lines

  1. \ F-PCADJ.TXT           Adjustments you can make to F-PC
  2.  
  3.       While F-PC may seem like a nebulous glob of stuff, some things about
  4.     it can be adjusted fairly simply.  The install process for example
  5.     allows you to tell F-PC where its source file will be located, whether
  6.     you want to have backup copies made of your edited files, and what you
  7.     want to call your installed version of F-PC.  There are however a
  8.     number of other things you might like to adjust to your personal way of
  9.     doing things, here is a list:
  10.  
  11.         The status line display may be turned on/off.
  12.  
  13.                 STATON          Enable status line display at top of screen.
  14.                 STATOFF         Disable status line display.
  15.  
  16.         The decompile display during debugging may be turned of/off.
  17.  
  18.                 SRCON           Source display enabled during debug.
  19.                 SRCOFF          Source display disabled during debug.
  20.  
  21.         The default file extension for the system and the file specification
  22.         string for the popup window file selector may be changed.
  23.  
  24.                 DEFEXT          Default file extension string counted.
  25.         HIDDEN DIRSPEC$         Directory specification for popup
  26.                                 window.
  27.  
  28.         The number of dictionary threads can be set to any binary multiple
  29.         of 2 in the range 2 to 128.
  30.  
  31.                 The constant #TTHREADS in META86.SEQ control the
  32.                 created kernels number of threads.
  33.  
  34.         The format of date printing can be adjusted to one of the three
  35.         supported formats, or you can add your own.
  36.  
  37.                 M/D/Y           Month/Day/Year (default format)
  38.                 Y-M-D           Year-Month-Day
  39.                 D.M.Y           Day.Month.Year
  40.  
  41.         You can manually turn editor backups on or off without going
  42.         through the install process.
  43.  
  44.                 BACKUPOFF       Disables the editor from making backup files.
  45.                 NOBACKUP        Same.
  46.                 BACKUPON        Enables the keeping of editor backup files.
  47.  
  48.         Screen display output can be switched between DOS and Direct Video
  49.         output for all screen text display.
  50.  
  51.                 FAST            Direct video screen write for all displayed
  52.                                 text.
  53.                 SLOW            Use DOS for all screen display.
  54.  
  55.         F-PC defaults to automatically entering the editor when an error
  56.         is encountered during a file load.  You can control this with the
  57.         following words.
  58.  
  59.                 AUTOEDITON      Automatically enter editor on load error.
  60.                 AUTOEDITOFF     Don't enter editor on load error.
  61.  
  62.         The changes you make to a file while editing will automatically be
  63.         saved after 10 minutes if you just get up and walk away from the
  64.         keyboard.  This editor automatic save feature is normally enabled
  65.         and is controlled by three words:
  66.  
  67.                 AUTOSAVEON      Enable automatic edit saves.
  68.                 AUTOSAVEOFF     Disable automatic edit saves.
  69.                 AUTOSAVE-MINUTES
  70.                                 A VALUE which contains 10 for 10 minutes,
  71.                                 but which can be user adjusted.
  72.  
  73.         If you are using a CGA (Color Graphics Adapter) type of video
  74.         display board, you will probably want to use BLANKON to reduce the
  75.         amount of snow or sparkle on your screen.  This word causes the
  76.         screen to be blanked while text is being written to the display to
  77.         reduce this effect. These words have no effect on monocrome
  78.         display adapters. Use BLANKOFF for an EGA or VGA adapter.
  79.  
  80.                 BLANKON         Enable screen blanking during text output.
  81.                 BLANKOFF        Disable screen blanking during text output.
  82.  
  83.         Most green or amber monocrome monitors display light characters
  84.         on a dark background.  If you have a color monitor or true white
  85.         on black minitor you may want to reverse forground and
  86.         background, giving a page white look with dark characters on a
  87.         white background.  I have found this to be more comfortable for
  88.         my own use.  You might also try the BLACK-ON-WHITE mode with an
  89.         Liquid Crystal or Florescent display.
  90.  
  91.                 WHITE-ON-BLACK  Normal, light chars on dark background.
  92.                 BLACK-ON-WHITE  Invert the screen to dark on light.
  93.  
  94.         The number of screen F-PC will save on its screen stack if
  95.         adjustable within the range 1 to 8. SVSIZE bytes (~4000) are
  96.         allocated for each screen stacked. F-PC needs SVMAX to be at least
  97.         three (3) for all of the existing utilities to function properly.
  98.         SVMAX is a "VALUE" that can be changed with "=:". You will only
  99.         need to do this if you write a program that needs to stack screens
  100.         more than the default number of screens deep.
  101.  
  102.                 5 =: SVMAX          \ increase number of buffers to 5
  103.                 FSAVE F <enter>     \ resave the system
  104.                 BYE                 \ leave after changing and saving
  105.                 F <enter>           \ now the screen stack is 5 deep.
  106.  
  107.  
  108.