home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / forth / compiler / fpc / zz.cfg < prev    next >
Text File  |  1990-07-24  |  3KB  |  49 lines

  1. SZ %1 %2 %3 /cmd||                                Run small Z in /CMD mode
  2. SZ %F.msg /b||                                    Ctrl-F1=Examine messages
  3. CLS|%1 %P|PAUSE||                                 Ctrl-F2=Execute program
  4. TCOM %1 /opt /noinit /q >%F.msg||                 Ctrl-F3=Compile "OPTIMIZED"
  5. SZ ZZ.CFG /cmd||                                  Ctrl-F4=Edit config file
  6. TCOM %1 /opt /sym /q >%F.msg||                    F5=Compile program
  7. echo Ctrl-F6  is not defined, edit ZZ.CFG|pause|| Ctrl-F6=<not defined>
  8. BXDEBUG %F.com||                                  F7=Debug program
  9. echo Ctrl-F8  is not defined, edit ZZ.CFG|pause|| Ctrl-F8=<not defined>
  10. F %1||                                            F9=Run Forth & open file
  11. LOOK "%PString: "" %PFilespecs: " |echo.|pause||  Ctrl-F10=find text in files
  12. echo Shift-F1 is not defined, edit ZZ.CFG|pause|| Shift-F1=<not defined>
  13. echo Shift-F2 is not defined, edit ZZ.CFG|pause|| Shift-F2=<not defined>
  14. echo Shift-F3 is not defined, edit ZZ.CFG|pause|| Shift-F3=<not defined>
  15. echo Shift-F4 is not defined, edit ZZ.CFG|pause|| Shift-F4=<not defined>
  16. echo Shift-F5 is not defined, edit ZZ.CFG|pause|| Shift-F5=<not defined>
  17. echo Shift-F6 is not defined, edit ZZ.CFG|pause|| Shift-F6=<not defined>
  18. echo Shift-F7 is not defined, edit ZZ.CFG|pause|| Shift-F7=<not defined>
  19. echo Shift-F8 is not defined, edit ZZ.CFG|pause|| Shift-F8=<not defined>
  20. ************************************************************************
  21. ******************** ZZ.CFG Documentation follows **********************
  22. ************************************************************************
  23.  
  24.   The various "%" commands in the above lines are interpreted as follows:
  25.  
  26.         %1      Is replaced with the filename being edited
  27.         %2      Is replaced with the ROW of the file being edited
  28.         %3      Is replaced with the COLUMN of the file being edited
  29.         %F      Is replaced witht he file being edited but with the file
  30.                   extension removed
  31.         %P      Is replaced with prompted command line parameters. %P can
  32.                   be followed with an optional string upto a " character
  33.                   in the form:  %PHello there"  where "Hello there" will
  34.                   be the prompt rather than the default "Command line:"
  35.  
  36.   The purpose of the %P escape sequence is to allow user entered parameter
  37. to be entered at command line execution time. The optional string following
  38. lets the user know what kind of parameter is being requested. Multiple
  39. %P sequences can be placed in a DOS command sequence, and each will be
  40. prompted and filled in before ANY of the DOS commands in the sequence is
  41. performed. The total length of any DOS sequence is limited to 255 characters,
  42. including The expanded filename, and parameters.
  43.  
  44.   The "|" symbol is used to delimit DOS commands, with "||" being used to
  45. signify the end of a series of commands. Text to the right of "||" is
  46. treated as comments.
  47.  
  48.  
  49.