home *** CD-ROM | disk | FTP | other *** search
/ PDA Software Library / pdasoftwarelib.iso / HP95_100 / UTILITY / PE / PE.CFG < prev    next >
Encoding:
Text File  |  1996-09-29  |  3.2 KB  |  95 lines

  1. ; This is the configuration file for PalEdit
  2. ; A. Garzotto, September 1996
  3.  
  4. [Display]
  5. ; startup font: 0=small 1=middle 2=large
  6. Zoom = 0
  7. ; amount of extra space between lines in pixels
  8. Leading = 1
  9. ; size of tabulators
  10. TabSize = 8
  11. ; set this to the number of keystrokes after which the "Save" label
  12. ; should blink to warn you (or to 0)
  13. SaveWarning = 1000
  14. ; set this to the number of times the area around the cursor should
  15. ; flash when it is moved (jumps) to a new position
  16. Flashes = 3
  17.  
  18. [Edit]
  19. ; set to 1 if new lines shall be indented automatically
  20. AutoIndent = 0
  21. ; set to 1 if PE should start up in overwrite (not insert) mode
  22. Overwrite = 0
  23. ; set to 1 if searches should be case sensitive
  24. CaseSensitive = 0
  25. ; set this to the column where automatic line wrapping should take place
  26. Wrap = 72
  27. ; set this to the column for automatic line wrapping in *.c and *.h files
  28. C-Wrap = 255
  29.  
  30. [Macros]
  31. ; F2  = Home ^K   ^K  (uncomment next line to make F2 delete line)
  32. ;#3c00 = #4700#250b#250b
  33. ; F3  = F2   ^Y   ^Y   Up (uncommment next line to make F3 double line)
  34. ;#3d00 = #3c00#1519#1519#4800
  35.  
  36. [Labels]
  37. ; label for F2 (uncomment to show as key label)
  38. ;2 = Del-L
  39. ; label for F3 (uncomment to show as key label)
  40. ;3 = Dup-L
  41.  
  42. [File]
  43. ; set to 0 if no backups (*.BAK) should be created
  44. Backup = 1
  45. ; uncomment this if you don't want to see the D&A banner(s)
  46. ;NoBanner = 1
  47. ; command to run compiler (must create file "SCRATCH")
  48. Compile = pm >SCRATCH
  49. ; uncomment this to have PalEdit press the ENTER key after quitting
  50. ; useful for acCIS, for example
  51. ;StuffENTER = 1
  52. ; uncomment the followinf if you don't want to see all the "do you
  53. ; really want to..." messages
  54. ;Clog = 0
  55. ; set this to the program that should be started to pick a file
  56. ;Chooser=pick.exe
  57. ;Chooser=commopns c:\file.lst
  58. ; if you want to have all temporary files in one directory (instead of
  59. ; in the directory where the edited file resides), put the directory here
  60. ;Temporary=C:\TMP
  61.  
  62. [Filter]
  63. ; up to ten DOS filters/commands can be specified here
  64. ; '%s' will be replaced by the input file name
  65. ; '@@' will ask the user for a string and insert it there
  66. ; if the command produces output, it should be redirected to SCRATCH
  67. ;
  68. ; run PE
  69. Pal&Edit = PE
  70. ; create a directory listing for user specified directory
  71. &Dir = dir @@ >SCRATCH
  72. ; the next command extracts all comments from a C program
  73. ; it uses Gilles Kohl's TREX utility
  74. Extract &Comments = trex /\*.*\*/ <%s >SCRATCH
  75. ; the next command indents each line by three spaces
  76. ; it uses the SED command
  77. &Indent 3 = sed -e "s/^/   /g" <%s >SCRATCH
  78. ; find all occurances of a string using the TREX utility
  79. &Only = trex ".*@@.*" <%s >SCRATCH
  80. ; find all occurances of a string using GREP and show line numbers
  81. &Grep = grep -n "@@" <%s >SCRATCH
  82.  
  83. [Mail]
  84. ; uncomment next line and specify the name of the server to send mail to
  85. ;SMTP=my.smtp.server
  86. ; uncomment next line and specify your full email address
  87. ;From=me@here.palmtop.earth
  88. ; uncomment next line and specify the name of the server to get mail from
  89. ;POP=my.pop.server
  90. ; uncomment next line if POP login/password is not the same as ISP
  91. ; login/password
  92. ;Manual_POP_Login=1
  93. ; specify the file that should hold your incoming email
  94. MailFile=C:\_DAT\INBOX.
  95.