home *** CD-ROM | disk | FTP | other *** search
-
- comments by Dave Williams, 8/31/88
-
- references to "go" are to a directory-changing utility called CDD.COM
- references to "sameline" are to a batch file that returns the cursor to the
- same line as when the CED command was issued, so the screen doesn't
- scroll downward.
-
- Sorry, Mike; I might have misinterpreted a couple of your macros there!
-
-
- ;set status character to control-D
- statch
-
- ;clear screen and put cursor in middle of screen
- syn g echo 0H
-
- syn ' mapmem >e:\&^c:\util\txt2com e:\&. e:\&.com^e:\&^del e:\&.*^g
-
- ;look at CED synonym list
- syn ? show c:\util\ced.cnf
-
- ;edit PC-Write's configuration file
- syn def go e:\^ed pcw3\ed.def^go e:\pcw3
-
- ;another macro for the directory utility
- syn e break on^cls^dd /on %1 %2
-
- ;look inside an archive (PKARC renamed ARC?)
- syn l cls^arc vm %1 %2
-
- ;bring up QDOS shell?
- syn q qd
-
- ;file viewer
- syn s show
-
- ;bring up spell checker
- syn sp c:\word\spell-am
-
- syn t whattime
-
- ;whiz is a file search utility
- syn wc whiz c:%1
- syn wd whiz d:%1
-
- ;to return from a DOS shell to the calling program
- syn x g^exit
-
- syn bl c:\batch\blank x
-
- ;calls PCOPY disk filling program
- syn co echo ^c:\util\pcopy %1 %2 /NW/NS/WH^exit
-
-
-
- rem ** directory changing macros
-
- SYN ` c:
- syn c cd c:
- syn `` d:
- syn r go c:\^e:\sameline
- syn mcs c:^cd\type\mcs
- syn ven go c:\ventura
- syn ty go c:\typeset
- SYN vv go c:\vpi^e:\sameline
- SYN vd go c:\vpi\data
- syn temp go d:\temp^e:\sameline
- syn docs go c:\docs^e:\sameline
- syn dos go c:\dos310^e:\sameline
- syn down go d:\download\new3^e:\sameline
- syn 3e go e:\pcw3
- syn 300 c:^cd\typeset\l300
- syn tp go c:\tp^e:\sameline
- syn mcst c:^cd\type\mcs\text
- syn tpe go c:\tp\examples^e:\sameline
- syn ut go c:\util^e:\sameline
- syn up go d:\upload^e:\sameline
- syn ltr go c:\letters^e:\sameline
- syn msg go d:\msg
- syn pcw go c:\pcw3
- SYN inv c:^cd\invoices
- syn kpe c:\keyport\kpedit
- syn / go e:\^e:\sameline
- syn ar go c:\arc^e:\sameline
- syn b go c:\batch^e:\sameline
- syn f go f:\^cls^dd /on
- ;some sort of sorted or double column directory, parameters
- syn d dd %1 %2 /on
-
-
-
- rem ** go somewhere and do something, execute a program
-
- syn bb go d:\boyan^boyan
- syn vx go c:\vpi^vpi start
- REM syn sp c:\wp\pencil %1
- syn dutch go d:\binkley^dutched
- syn mset c:^cd\type\mcs^microset^type microset.msg
- syn bbl go d:\boyan^e:\sameline
- syn bink go d:\binkley^e:\sameline
- syn edd go c:\ed^e:\sameline
- syn err go e:\pcw3^ed3 errors.inf
- syn 3 go e:\pcw3^ed3
- syn exx go e:\^ed test.mss
-
-
-
-
- rem ** memory control macros (for Mark and Release)
-
- syn kpoff release e:\kp.mrk
- syn clearall ^^if exist e:\first.mrk release e:\first.mrk
- syn skoff release e:\sk.mrk
- syn skon go c:\sk^fmark e:\sk.mrk^sk
- syn rel release e:\%1.mrk
- syn prox release e:\wphd.mrk^c:\batch\prmt.bat
- syn lightoff release e:\light.mrk
- syn lighton fmark e:\light.mrk^cd c:\light^c:^light
-
-
- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
-
- The erase.txt and sameline.bat files from Mike Arst.........
-
- Ok, it's all yours: the ERASE.TXT file:
- ------------ ( starts here ) -----------------------------
- The following line moves the cursor back up to the screen
- line where the batch file starts, after deleting the ECHO OFF:
-
- echo AAA
-
-
- The following does the same as the first line but then moves down
- one line - to create some blank space.
- echo AAB
-
- ------------------ ( ends there ) --------------------------
- ------------------( and now for the SAMELINE.BAT file ) ----
- echo off
- echo AAAAAAA
-
- (ends there)
-
- If I were to try to explain why these work it'd tie me up into
- a knot. I just screwed around with this stuff until I got it to work.
-
- Mike
-
-