home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / BEEHIVE / ZSUS / Z3HELP-5.LBR / V.LBR / V0.HZP / V0.HLP
Text File  |  2000-06-30  |  2KB  |  52 lines

  1. ;
  2.                                       V.COM                                   
  3.  
  4.              Size (recs) CRC   Version    Author/Latest Issue      Disk
  5.                5k (40)   7CD6  0.2a       Bridger Mitchell 10/89   Z3COM16
  6.  
  7.   1- Syntax  2- TCAP Requirements                                             
  8.  
  9.    V is a bi-directional file-viewer for ZCPR3.  It uses an in-memory cache to
  10. make the most recently read sectors of a file available for re-viewing without
  11. additional disk reads.  This allows reverse viewing of crunched  files,  up to
  12. the limit of  available memory.   If,  when  going in  reverse,  the  cache is 
  13. exhausted,  V will  automatically restart  the  uncrunching  process  from the 
  14. beginning of the file and display the first lines.
  15.  
  16.    Viewing of adjacent lines/screens  is  rapid  for  both  ascii and crunched 
  17. files.   Going to the End is  also  quick in ascii,  but results in some delay 
  18. uncrunching a large file -- the entire file must be uncrunched first.
  19. :1
  20.  
  21.    Syntax   V filename.typ
  22.  
  23. See control menu at top of screen.
  24.  
  25. To search forward, enter "Gstring<cr>"
  26.     UPPERcase matches exactly
  27.     lowercase matches lower or upper
  28.     '?' matches any character
  29.  
  30. "G<cr>" finds next match
  31. :2
  32.  TCAP Requirements 
  33.  
  34.    The termcap requirement is the  addition of three  strings to  the standard
  35. Z-System termcap.  These definitions are already setup in files of type ".NZT"
  36. (New Z-System Termcap),  available on major Z-Nodes.   If your  terminal isn't 
  37. already there,  you  can  add  definitions  following the  initialization  and 
  38. deinitialization strings.   Here's an example for the Wyse-50:
  39.  
  40.     [ first part of termcap omitted...]
  41.  
  42.     DEFB    ESC,')',0    ; SO - Standout on string
  43.     DEFB    ESC,'(',0    ; SE - Standout end string
  44.     DEFB    0        ; TI - Terminal init string
  45.     DEFB    0        ; TE - Terminal de-init string
  46. ;
  47. ; Extensions to Standard TCAP
  48. ;
  49.     DEFB    ESC,'R',0    ; DL - Line Delete
  50.     DEFB    ESC,'E',0    ; IL - Line Insert
  51.     DEFB    ESC,'Y',0    ; CD - Clear to End of Screen String
  52.