home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / programs / textual / zap / zmods / Modules / !ZapUtils / HelpData < prev    next >
Encoding:
Text File  |  1997-04-28  |  1.9 KB  |  56 lines

  1. BW (ZapUtils Paul Moore)
  2. Moves the cursor backwards one "word".
  3.  
  4. DELWORDLEFT (ZapUtils Paul Moore)
  5. Deletes one "word", to the left.
  6.  
  7. DELWORDRIGHT (ZapUtils Paul Moore)
  8. Deletes one "word", to the right.
  9.  
  10. FILTERSEL <string> (ZapUtils Paul Moore)
  11. This command takes the selected area of the current file, and feeds it to the
  12. standard input of the command "str". The selection is replaced by the
  13. standard output.
  14.  
  15. C-style redirection is used (ie, command <standard_in >standard_out), so only
  16. filter programs written in languages using the Shared C Library are likely to
  17. work.
  18.  
  19. Error messages are ignored.
  20. <Wimp$ScrapDir> is used for temporary files (called Zap-In and Zap-Out).
  21.  
  22. As an example, to sort the selected area, use FILTERSEL "sort", assuming you
  23. have a suitable sort program available.
  24.  
  25. FW (ZapUtils Paul Moore)
  26. Moves the cursor forwards one "word".
  27.  
  28. SEARCHWORD <word> (ZapUtils Paul Moore)
  29. Search for the word at the cursor.
  30. The exact effect depends on the parameter n.
  31.  
  32.     n=0     Search to buffer
  33.     n=+1    Search forward from the current cursor position (next match)
  34.     n=-1    Search backward from the current cursor position (previous match)
  35.     n=+2    Search forward from the start of the buffer (first occurrence)
  36.     n=-2    Search forward from the start of the buffer (last occurrence)
  37.  
  38. All searches wrap at the end of the buffer, just like Zap's standard search
  39. routine (because that's what we use!)
  40.  
  41. WINLEFT (ZapUtils Paul Moore)
  42. Moves the current Zap window left on the screen, by the amount specified
  43. (in OS units).
  44.  
  45. WINRIGHT (ZapUtils Paul Moore)
  46. Moves the current Zap window right on the screen, by the amount specified
  47. (in OS units).
  48.  
  49. WINUP (ZapUtils Paul Moore)
  50. Moves the current Zap window up on the screen, by the amount specified
  51. (in OS units).
  52.  
  53. WINDOWN (ZapUtils Paul Moore)
  54. Moves the current Zap window down on the screen, by the amount specified
  55. (in OS units).
  56.