home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume6 / help / part2 / help.dir / vi / commands / insert.HLP < prev    next >
Encoding:
Text File  |  1986-11-30  |  1.0 KB  |  32 lines

  1.  
  2.     The main way to put text in your buffer in vi is insert.
  3.     Several commands enter "insert" state:
  4.  
  5.       i    insert text right here
  6.       a    insert text to the right of right here
  7.       A    insert text at the end of the line
  8.       I    insert text at the beginning of this line
  9.       o    insert text on a following blank line
  10.       O    insert text on a preceding blank line
  11.  
  12.     Insert state is terminated with the ESCape key. 
  13.     You can also terminate insert with ^C (intr) but
  14.     that ABORTs the insert state, and your text is lost.
  15.     Note that insert state IS line oriented, when you have
  16.     finished inserting each line, that line is in the buffer
  17.     to stay.
  18.  
  19.     Several control characters have special meaning to vi
  20.     when you are inserting text, so they will cause actions
  21.     rather than be inserted.  Do not be alarmed, this kind
  22.     of ragged non-parameteric functionality is common in vi.
  23.         
  24.     The following commands work within insert state:
  25.  
  26.       ^H    erase last character
  27.       ^W    erase last word
  28.       ^U    erase this insert line
  29.       \    quote next character
  30.       ^V    really really quote next character
  31.  
  32.