Z %1 %2 %3 /cmd|| Run small Z in /CMD mode SZ %F.msg /b|| Ctrl-F1=Examine messages CLS|%F %P|PAUSE|| Ctrl-F2=Execute program CLS|TCOM %1|PAUSE|| Ctrl-F3=Compile program SZ ZZ.CFG /cmd|| Ctrl-F4=Edit config file CLS|TCOM %1|PAUSE|| F5=Compile program LS86 %1|| Ctrl-F6=Make a listing bug %F.com|| F7=Debug program ZLIST %F.LST|| Ctrl-F8=View listing F %1|| F9=Run Forth & open file LOOK "%PString: "" %PFilespecs: " |echo.|pause|| Ctrl-F10=find text in files echo Shift-F1 is not defined, edit ZZ.CFG|pause|| Shift-F1= echo Shift-F2 is not defined, edit ZZ.CFG|pause|| Shift-F2= echo Shift-F3 is not defined, edit ZZ.CFG|pause|| Shift-F3= echo Shift-F4 is not defined, edit ZZ.CFG|pause|| Shift-F4= echo Shift-F5 is not defined, edit ZZ.CFG|pause|| Shift-F5= echo Shift-F6 is not defined, edit ZZ.CFG|pause|| Shift-F6= echo Shift-F7 is not defined, edit ZZ.CFG|pause|| Shift-F7= echo Shift-F8 is not defined, edit ZZ.CFG|pause|| Shift-F8= ************************************************************************ ******************** ZZ.CFG Documentation follows ********************** ************************************************************************ The various "%" commands in the above lines are interpreted as follows: %1 Is replaced with the filename being edited %2 Is replaced with the ROW of the file being edited %3 Is replaced with the COLUMN of the file being edited %F Is replaced witht he file being edited but with the file extension removed %P Is replaced with prompted command line parameters. %P can be followed with an optional string upto a " character in the form: %PHello there" where "Hello there" will be the prompt rather than the default "Command line:" The purpose of the %P escape sequence is to allow user entered parameter to be entered at command line execution time. The optional string following lets the user know what kind of parameter is being requested. Multiple %P sequences can be placed in a DOS command sequence, and each will be prompted and filled in before ANY of the DOS commands in the sequence is performed. The total length of any DOS sequence is limited to 255 characters, including The expanded filename, and parameters. The "|" symbol is used to concatinate multiple DOS commands, "||" is used to signify the end of a series of DOS commands. Text to the right of "||" is treated as comments.