home *** CD-ROM | disk | FTP | other *** search
- ; This is the configuration file for PalEdit
- ; A. Garzotto, September 1996
-
- [Display]
- ; startup font: 0=small 1=middle 2=large
- Zoom = 0
- ; amount of extra space between lines in pixels
- Leading = 1
- ; size of tabulators
- TabSize = 8
- ; set this to the number of keystrokes after which the "Save" label
- ; should blink to warn you (or to 0)
- SaveWarning = 1000
- ; set this to the number of times the area around the cursor should
- ; flash when it is moved (jumps) to a new position
- Flashes = 3
-
- [Edit]
- ; set to 1 if new lines shall be indented automatically
- AutoIndent = 0
- ; set to 1 if PE should start up in overwrite (not insert) mode
- Overwrite = 0
- ; set to 1 if searches should be case sensitive
- CaseSensitive = 0
- ; set this to the column where automatic line wrapping should take place
- Wrap = 72
- ; set this to the column for automatic line wrapping in *.c and *.h files
- C-Wrap = 255
-
- [Macros]
- ; F2 = Home ^K ^K (uncomment next line to make F2 delete line)
- ;#3c00 = #4700#250b#250b
- ; F3 = F2 ^Y ^Y Up (uncommment next line to make F3 double line)
- ;#3d00 = #3c00#1519#1519#4800
-
- [Labels]
- ; label for F2 (uncomment to show as key label)
- ;2 = Del-L
- ; label for F3 (uncomment to show as key label)
- ;3 = Dup-L
-
- [File]
- ; set to 0 if no backups (*.BAK) should be created
- Backup = 1
- ; uncomment this if you don't want to see the D&A banner(s)
- ;NoBanner = 1
- ; command to run compiler (must create file "SCRATCH")
- Compile = pm >SCRATCH
- ; uncomment this to have PalEdit press the ENTER key after quitting
- ; useful for acCIS, for example
- ;StuffENTER = 1
- ; uncomment the followinf if you don't want to see all the "do you
- ; really want to..." messages
- ;Clog = 0
- ; set this to the program that should be started to pick a file
- ;Chooser=pick.exe
- ;Chooser=commopns c:\file.lst
- ; if you want to have all temporary files in one directory (instead of
- ; in the directory where the edited file resides), put the directory here
- ;Temporary=C:\TMP
-
- [Filter]
- ; up to ten DOS filters/commands can be specified here
- ; '%s' will be replaced by the input file name
- ; '@@' will ask the user for a string and insert it there
- ; if the command produces output, it should be redirected to SCRATCH
- ;
- ; run PE
- Pal&Edit = PE
- ; create a directory listing for user specified directory
- &Dir = dir @@ >SCRATCH
- ; the next command extracts all comments from a C program
- ; it uses Gilles Kohl's TREX utility
- Extract &Comments = trex /\*.*\*/ <%s >SCRATCH
- ; the next command indents each line by three spaces
- ; it uses the SED command
- &Indent 3 = sed -e "s/^/ /g" <%s >SCRATCH
- ; find all occurances of a string using the TREX utility
- &Only = trex ".*@@.*" <%s >SCRATCH
- ; find all occurances of a string using GREP and show line numbers
- &Grep = grep -n "@@" <%s >SCRATCH
-
- [Mail]
- ; uncomment next line and specify the name of the server to send mail to
- ;SMTP=my.smtp.server
- ; uncomment next line and specify your full email address
- ;From=me@here.palmtop.earth
- ; uncomment next line and specify the name of the server to get mail from
- ;POP=my.pop.server
- ; uncomment next line if POP login/password is not the same as ISP
- ; login/password
- ;Manual_POP_Login=1
- ; specify the file that should hold your incoming email
- MailFile=C:\_DAT\INBOX.
-