> I have used vi/vim/vile/elvis/vigor for plain-text editing and find it
> simply horrible. Granted, I don't know how to turn on wordwrapping, or
> make it so ou don't need to switch in and out of Insert mode... those guys
> are great for coding, but don't work for my plaintext needs...
> 

Vim does a great job of word wrapping.  Throw this in your .vimrc

set textwidth=75

This sets the maximum length of a line to 75 characters.  If a word puts you
over 75, that word will be wrapped to the next line (like a emacs-type
editor).  Also, if your line _does_ get really long (because you concat
multiple lines, or some such), just hit

gq$

in command mode (but no colon), and your giant line will be broken up into
"window width"-long lines.  It's nifty.  Try giving the docs a read before
you just give up on a far-superior editor.

Gabe

-- 
--------------------------------------------------------------------------------
Gabe Turner				       |  	   X-President,
UNIX Systems Administrator,		       | Assoc. for Computing Machinery
U of M Supercomputing Institute for	       |    University of Minnesohta
Digital Simulation and Advanced Computation    |       dopp at acm.cs.umn.edu

"Question with boldness even the existence of a god."
							- Thomas Jefferson
-------------------------------------------------------------------------------