set wrapmargin=300
set textwidth=300
How can I have text, regardless of how long it
is, be displayed on only one line?
-Thanks
:set nowrap
--
Fabian Kurz, DJ1YFK * Dresden, Germany * http://fkurz.net/
>I'm trying to turn off word wrap in gvim 6.3.
>
>How can I have text, regardless of how long it
>is, be displayed on only one line?
Do you mean _existing_ lines of text? If so,
:set nowrap
Or do you mean you don't want Vim to very long break lines as you
type them? If so,
:set tw=0
--
Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com/
"My theory was a perfectly good one. The facts were misleading."
-- /The Lady Vanishes/ (1938)
> On Fri, 08 Jul 2005 19:09:11 -0400, Fred <itf...@cdw.com> wrote:
>
>> [quoted text muted]
>
> Do you mean _existing_ lines of text? If so,
> :set nowrap
>
> Or do you mean you don't want Vim to very long break lines as you
> type them? If so,
> :set tw=0
Yes, thank you, the set nowrap did it. Easy once you
know how!