home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / editor / tvx_edit.arc / TVX.REF < prev    next >
Text File  |  1986-03-17  |  4KB  |  88 lines

  1.         *** TVX Quick Reference Summary ***
  2.  
  3.   Usage: tvx filename [-b -i -l -o=f -r -s -t -w -# {-z -c=f}]
  4.  
  5.     -[no]b : backup file           -[no]i : autoindent
  6.     -[no]l : make command log file -t : tty mode
  7.     -o=outputfile                  -r : read only
  8.     -s : big save buff             -[no]w : word processing mode
  9.     -# : set virtual window lines to #
  10.   On MS-DOS versions:
  11.     -[no]z : use control-z for end of file
  12.     -c=configfile                  -c : use /bin/config.tvx
  13.  
  14.                TVX Commands (n => count allowed)
  15.  
  16.     nA Append lines to save buffer (previous contents retained)
  17.      B Buffer beginning - move cursor to top of current buffer
  18.     ^B File beginning - move cursor to beginning of file
  19.     nC Change chars - delete n characters, enter insert mode
  20.     nD Down line - move cursor to beginning of next nth line
  21.    n^D Down column - move to same column in nth line down.
  22.      E Buffer end - move cursor to end of current buffer
  23.    n^E Insert repeat buffer n into current text for Editing
  24.     nF Find pattern - terminated with Escape - wild cards possible
  25.     ^F Find across buffs - searches across file buffers
  26.      G Get save buffer - insert contents of save buffer into text
  27.     ^G Unkill last line - get back the last single line killed
  28.     nH Half page - move cursor down (+n) or up (-n) half screen
  29.     nI Insert (till $) - If n supplied, then single char inserted
  30.      J Jump back to line cursor was on before previous command
  31.     nK Kill character - deletes starting at char cursor is over
  32.    n^K Kill line - deletes n lines
  33.     nL Left - move cursor n characters left
  34.      M Memory status - show basic status
  35.     nN Note current location, up to 9 different places remembered
  36.    n^N Reset location - return cursor to location n
  37.     nO Open blank line - new line in front of cursor
  38.     ^O Operating system - allows operating system commands
  39.     nP Page - move cursor up (-n) or down (+n) screenfuls
  40.     ^P Print screen - only on PCs
  41.     nR Right - move cursor right n characters
  42.     ^R Restore edited buffer - Used with ^E command
  43.     nS Save n consecutive lines in save buffer - deletes old contents
  44.     nT Tidy (fill text) - uses margin set by :w
  45.     ^T Abort session - edits are lost!
  46.     nU Up - move cursor up n lines to line beginning
  47.    n^U Up column - retains column
  48.      V Verify - repaints the screen
  49.    n^W Write buff, get next part of large file, -n writes to cursor
  50.     ^X Exit, end session - save edits
  51.    n^Y Yank to(-n)/from(+n) file - prompt for filename will follow
  52.    nBS Delete character before the cursor
  53.     n; Find again - re-uses last find pattern
  54.      / Delete "last thing" - following g, s, a, f, ^f commands
  55.      = Change "last thing" - like /, but enters insert mode
  56.      ' Delete to line beginning - deletes before cursor
  57.      " Delete to line end - cursor onward to end of line
  58.      , Line beginning - move cursor to beginning of line
  59.      . Line end - move to end of current line
  60.   nTAB Word right - move to begining of word to right
  61.     n{ Word left - left a word. n=0 move to beg of current word.
  62.  n<>$$ Repeat loop - execute commands between <>'s n times
  63.     n& Repeat again - execute current repeat buffer again
  64.    n#k Execute repeat buffer k n times
  65.      ? Help - gives a help screen
  66.      @ Invoke cmd file - execute file of TVX commands
  67.      * Insert pattern found last - leaves in command mode
  68.     n~ Toggle case - upper to lower, lower to upper
  69.      $ Escape - end insert, find, repeat
  70.    n:p Set parameter p -  Possible parameters:
  71.         A - Autoindent (1=y,0=n)     D - display line
  72.         E - Expand tabs to n spaces  F - find case (0=exact,1=any)
  73.         M - Match wild cards         O - set output file name
  74.         S - scroll window            R - repeat buffer to use
  75.         T - tty mode                 U - define user wild card set
  76.         V - virtual window           W - autowrap width
  77.         C - cut mode
  78.  
  79.   Wild card matching - when wild card matching (:M) is enabled (default),
  80.   the following wild cards (control characters) are supported
  81.  
  82.   ^A - alphanumeric character (a-z,0-9)   ^D - a digit (0-9)
  83.   ^L - any letter (a-z) ^O - Other - not ^A  ^P - Punctuation
  84.   ^X - any single character  ^U - a character from user set (:U to set)
  85.   Any of the above preceded by ^W matches a "word" of the wild card.
  86.   A ^N will match a "word" of characters NOT in the wild card set.
  87.  
  88.