home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 17 / CD_ASCQ_17_101194.iso / vrac / gohom10a.zip / GOED.HLP < prev    next >
Text File  |  1994-04-30  |  12KB  |  331 lines

  1. Help file for GoED.
  2.  
  3. @@Contents
  4. HelpOnHelp : `1Help on Help`0
  5. GoEdOver   : `1Editor Overview`0
  6. @@SectionHdr :
  7. @@SectionHdr :    `2Command Parameters`0
  8. @@SectionHdr :
  9. CmdLine    : `1Command line parameters`0
  10. FileCmds   : `1Commands placed in first line of file`0
  11. @@SectionHdr :
  12. @@SectionHdr :    `2Edit Keys`0
  13. @@SectionHdr :
  14. CursKeys   : `1Cursor Movement`0
  15. DelKeys    : `1Delete Keys`0
  16. FnKeys     : `1Function Keys`0
  17. MarkKeys   : `1Selecting Text`0
  18. SearchKeys : `1Finding Text`0
  19. MiscKeys   : `1Miscellaneous Keys`0
  20. MacroKeys  : `1Macro Keys`0
  21. File       : `1Managing Files`0
  22. @@SectionHdr :
  23. @@SectionHdr :    `2Miscellaneous Items`0
  24. @@SectionHdr :
  25. Colors     : `1Using Colors`0
  26. MenuBar    : `1Menu Bar`0
  27. @@EndContents
  28.  
  29.  
  30.  
  31. @@Help
  32. [HelpOnHelp]
  33. To use help, select the topic you want help on from the topics
  34. list (enter 'T' to get back to the topics list). Use the
  35. cursor and page keys to scroll through the text. The `2 Next`0
  36. and `2 Previous `0 buttons move to the next and previous
  37. topic, respectively.
  38.  
  39. All of the buttons in `1GoHelp`0 can be executed by simply
  40. pressing the key that is highlighted on the button. You can
  41. also TAB to the button or press it's accelerator key (press
  42. <ALT> + key hightlighted on button label).
  43.  
  44. To get help on a particular program, run `1GoHelp`0 with the
  45. first argument on the command line set: `1GoHome`0,
  46. `1GoScript`0, `1GoSched`0, or `1GoEd`0. You can also run
  47. `1GoHelp`0 with no arguments, in which case you will be
  48. presented with a menu to select the program you want help on.
  49.  
  50.  
  51. [GoEdOver]
  52. GoEd is a file editor that has several unique features that
  53. make it different from other editors.  GoEd was designed to
  54. be small in size but not in features, load files as quick as
  55. possible, be able to define the number of rows and columns to
  56. display, allow text to be assigned different colors, and to
  57. be integrated in with GoHome to behave as a "pop-up" notepad.
  58.  
  59. GoEd functions like most text editors: it performs basic file
  60. editing, search-and-replace, and goto line operations.  It
  61. also provides several advanced features such as cut, copy,
  62. and paste blocks of text, set tabs, set maximum line length,
  63. set read-only mode, display control characters, and allows
  64. text to be assigned to macro keys.  In addition, GoEd also
  65. provides for characters to be displayed in different colors
  66. and the width and height of the editor to be set.
  67.  
  68.  
  69. [CmdLine]
  70. `1GoEd`0 provides a way to customize its behavior by using
  71. command line arguments. As with all GoHome programs, command
  72. line arguments may be placed in a config file. The default
  73. config file for `1GoEd`0 is `2GOED.CFG`0. If a different
  74. config file is used, it may be specified when starting
  75. `1GoEd`0 with the argument "@configfile" where configfile
  76. is replaced with the file name of the config file to use.
  77.  
  78. The syntax for starting `1GoEd`0 is
  79.  
  80.      GoEdit [parameters] filename                                   
  81.                                                                         
  82. Parameters                                                              
  83.   /POS=row,col,width,height - position and size of edit window
  84.   /FULL=[Y|N]     full screen edit window
  85.   /SAVSCRN=[Y|N]  Save foreground screen (default is 'Y'). Use
  86.                   `1/SAVSCRN=N`0 to increase editor capacity by
  87.                   4,212 bytes.
  88.   /IGGMDS=[Y|N]   Ignore any config commands in file
  89.   /READ=[Y|N]     readonly
  90.   /TAB=x          x is tab tab size (default 4) 
  91.   /USECOLORS=[Y|N]  Use back quote as color attribute 
  92.                   indicator
  93.   /TEXT=x         x is text color attribute (ie. x=1B for 
  94.                   cyan on blue)
  95.   /STATUS=x       x is status line color (ie. x=5C for red on 
  96.                   magenta) 
  97.   /LEN=x          x is the maximum number of characters 
  98.                   in a line      
  99.   /FIND=x         x is a string to search and goto in the 
  100.                   text file
  101.   /GOTO=x         x is the line number to go to                        
  102.   /CSET=[m|b|1,2,3,4]  Select color set 
  103.                   (m->mono,b->B&W,other color)
  104.   /PAL=x          use color palette x where is 1 or 
  105.                   2 (VGA only).
  106.   @configfile     Use command parameters in 'configfile'
  107.  
  108.  
  109. [FileCmds]
  110. `1GoEd`0 may be configured differently depending on the
  111. file. When `1GoEd`0 is reading in a file, it checks to see
  112. if the first line starts with "GoEdCmds:". If it does, then
  113. `1GoEd`0 will uses the parameters that follow it as the 
  114. default edit parameters. For example, assume that the 
  115. following line appeared as the first line in a file.
  116.  
  117. GoEdCmds: /POS=2,27,23,20  /READ /GOTO=2
  118.  
  119. The /POS=2,27,23,20 command would move the edit window to the
  120. 2nd row and the 27th column of the screen.  It also would set
  121. the width of the editor to 23 characters and the height to 20
  122. rows.  Screen coordinates start with one and go to the
  123. maximum allowed by the screen (usually 25 rows and 80
  124. columns).
  125.  
  126. The /READ command puts GoEd into read-only mode (i.e.  the
  127. file cannot be edited).  To turn off read-only mode, press
  128. "<Alt><O>" to pop-up the Options dialog.  Then press
  129. "<Alt><R>" to move to the "Read only" field and remove the
  130. check mark by pressing the space bar.  The file can now be
  131. edited.
  132.  
  133. Finally, the /GOTO=2 command tells GoEd to move to the second
  134. line of the file.  This will hide the commands in the first
  135. line of the file.
  136.  
  137. GoEd also has a command line parameter, "/IGCMDS", that
  138. tells it to ignore any commands in the first line of the file.
  139.  
  140.  
  141.  
  142. [CursKeys]
  143. The following keys are used to move the cursor around in
  144. `1GoEd`0.
  145.  
  146.        Key        Action
  147.     ----------------------------------------------
  148.        ─         Moves left one character
  149.        ─         Moves right one character
  150.                  Moves up one line
  151.                  Moves down one line
  152.       Ctrl ─     Moves to next word at right
  153.       Ctrl ─     Moves to next word at left
  154.       Home        Moves to start of line
  155.       End         Moves to end of line
  156.       Ctrl+Home   Moves to top of window
  157.       Ctrl+End    Moves to bottom of windows
  158.       PgUp        Scrolls up one screenful
  159.       PgDn        Scrolls up one screenful
  160.       Ctrl+PgUp   Moves to beginning of file
  161.       Ctrl+PgDn   Moves to end of file
  162.       Ctrl+W      Scrolls up one line
  163.       Ctrl+Z      Scrolls down one line
  164.  
  165. [DelKeys]
  166.        Key        Action
  167.     ---------------------------------------------------
  168.        Del        Delete character cursor is on 
  169.        BkSpace    Delete char to left of cursor
  170.        Ctl-T      Delete the word to right of cursor
  171.        Ctl-D      Delete line cursor is on
  172.        Ctl-Q      Delete to end of line                               
  173.  
  174.  
  175. [FnKeys]
  176.        Key       Action
  177.     ---------------------------------------------------
  178.        F1        Show Help screen
  179.        F2        Save the text to file
  180.        F3        Exit the editor
  181.        F4        Search for a piece of text (Find)
  182.        F5        Repeat last search (Find Next)
  183.        F6        Start marking a block        
  184.        F7        Cut marked block           
  185.        F8        Paste a block of text previous copied or cut
  186.        F9        Display information about the file
  187.        F10       Edit another file          
  188.  
  189.  
  190. [MarkKeys] 
  191. To mark a block, move the cursor to the first line to be 
  192. selected. Use the arrow keys to move the cursor to the last
  193. line you want selected.  To cancel the selection, press <Esc>.
  194.  
  195.        Key        Action
  196.     --------------------------------------------------------
  197.        Ctl+M      Start marking a block 
  198.        arrow keys Extend marked block      
  199.        Ctl+C      Copy marked block to clipboard
  200.        Ctl+V      Paste block from clipboard
  201.        Ctl+X      Cut marked block to clipboard
  202.  
  203.  
  204. [SearchKeys]
  205.        Key       Action
  206.     ---------------------------------------------------
  207.        Ctl+S    Search for text (Find)
  208.        Ctl+L    Repeat last search (Find Next)
  209.        Ctl+R    Find & replace text
  210.        Ctl+G    Goto a line number  
  211.  
  212. [MiscKeys]
  213.        Key       Action
  214.     ---------------------------------------------------
  215.        Ctl+I    Display information about the file
  216.        Ctl+O    Show Options dialog 
  217.        Alt+H    Bring up the help system
  218.        Alt+Z    Show color codes
  219.  
  220.  
  221. [MacroKeys]
  222. GoEd allows you to define up to 10 `1Macro`0 keys. A `1Macro`0
  223. key will insert a predefined text segment into the current 
  224. cursor location. 
  225.  
  226. `1Macro`0 keys are assigned to the <Alt> number keys (<Alt><1>,
  227. <Alt><2>, ..., <Alt><0>). They may be defined on the command 
  228. line but are generally placed in the config file for `1GoEd`0
  229. (i.e. GOED.CFG). `1GoEd`0 has 10 command line arguments for
  230. each allowable macro key: /alt1, /alt2, ..., /alt0. The macro
  231. strings must be enclosed in quotes. For example, if we want
  232. to assign the string "Added Dimension Software, Inc." to
  233. <Alt><1>, we would add the following line to GOED.CFG:
  234.  
  235.   /ALT1="Added Dimension Software, Inc."
  236.  
  237. Now, whenever the <Alt><1> keys are pressed, the above string
  238. will be inserted into the text file. 
  239.  
  240. Macros may extend multiple lines. For example, we could assign
  241. an address block to the <Alt><2> keys using the following line:
  242.  
  243.   /ALT2="John Doe
  244.    1234 Anytown Ave.
  245.    Burbsville, USA  54321
  246. "
  247.  
  248. Note that the entire string is enclosed within quotes.
  249.  
  250.  
  251. [File]
  252.        Key       Action
  253.     ---------------------------------------------------
  254.       Alt-S      Save text to file
  255.       Alt-A      Save the text to another file name
  256.       Alt-E      Edit another file
  257.  
  258.  
  259. [Colors]
  260. `1GoEd`0 has a unique feature that allows text files to
  261. display characters in different colors. These is handy to
  262. highlight certain words in a file. For example, you may want
  263. to have a file that lists the keys used by Word Perfect. You
  264. could have the key sequence displayed in blue and the
  265. description displayed in yellow.
  266.  
  267. GoEd uses the forward quote (``) to tell it to use the color
  268. that corresponds with the number following it.  Note that
  269. there are two single quotes on the keyboard, the forward
  270. quote is the one that is typically just to the left of the
  271. number 1 key and when the <Shift> key is pressed will display
  272. a tilde (~) character.
  273.  
  274. To see a list of colors that are assigned to numbers, display
  275. the "Show Colors" dialog (press <Alt><Z>). 
  276.  
  277. To have `1GoEd`0 interpret color codes, either start it with
  278. the `2/USECOLORS`0 option or turn on colors by checking the
  279. "Use color codes" check box in the `2Options`0 dialog.
  280.  
  281. For example, say we want to have a file that lists the
  282. function keys used by `1GoEd`0. We want to use the color
  283. assigned to number 5 to display the function keys and 
  284. the color assigned to number 8 to display the description.
  285. The file might look like this
  286.  
  287. GoEdCmds: /POS=2,12,48,14  /READ /GOTO=2 /USECOLORS
  288.   Key       Action
  289. ---------------------------------------------------
  290.   ``5F1``3        ``7Show Help screen``3
  291.   ``5F2``3        ``7Save the text to file``3
  292.   ``5F3``3        ``7Exit the editor``3
  293.   ``5F4``3        ``7Search for a piece of text (Find)``3
  294.   ``5F5``3        ``7Repeat last search (Find Next)``3
  295.   ``5F6``3        ``7Start marking a block``3
  296.   ``5F7``3        ``7Cut marked block``3
  297.   ``5F8``3        ``7Paste a block of text``3
  298.   ``5F9``3        ``7Display information about the file``3
  299.   ``5F10``3       ``7Edit another file``3
  300.  
  301. Note that the first line contains parameters to size the
  302. editor, put it in read-only mode, goto to the second line,
  303. and turn on the ability to use colors.
  304.  
  305. [MenuBar]
  306. If GoEd is in full screen mode, a menu bar will be used.
  307. If this is the case, some of the <Alt> key combinations 
  308. will pull-down a menu instead of performing an action.
  309. For example, in full screen mode the <Alt><O> keys will
  310. pull-down the "Options" menu; if not in full screen mode,
  311. then <Alt><O> will display the "Options" dialog.
  312.  
  313.  
  314.  
  315. @@EndHelp
  316. 
  317.