Vim Tips Wiki
Register
(Change <tt> to <code>, perhaps also minor tweak.)
Tags: Visual edit apiedit
(8 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{review}}
 
 
{{TipImported
 
{{TipImported
 
|id=850
 
|id=850
Line 12: Line 11:
 
|category2=Usage
 
|category2=Usage
 
}}
 
}}
You can set the text width using {{tt|1=:set textwidth=n}} (or {{tt|1=:set tw=n}}) where n is a positive integer, for example:
+
You can set the text width using <code>:set textwidth=n</code> (or <code>:set tw=n</code>) where n is a positive integer, for example:
 
<pre>
 
<pre>
 
:set tw=79
 
:set tw=79
  +
</pre>
  +
Also make sure that you have the "t" formatoption set!
  +
<pre>
  +
:set formatoptions+=t
 
</pre>
 
</pre>
   
Line 29: Line 32:
 
</pre>
 
</pre>
   
sets a wrap margin of 2 characters from the right window border. A system-dependent EOL character is inserted and the line wraps as you type. This option may be useful in some situations, but probably is not what you are looking for.
+
sets a wrap margin of 2 characters from the right window border. A [[File format|system-dependent EOL character]] is inserted and the line wraps as you type. This option may be useful in some situations, but probably is not what you are looking for.
  +
  +
Use
  +
<pre>
  +
gq
  +
</pre>
  +
  +
on a line or paragraph that is too long, and vim will wrap it automatically at your assigned textwidth.
  +
  +
The above methods will do a "hard" wrap of your text, by inserting newline characters. An alternative method is a "soft" wrap which does not change the text but simply displays it on multiple lines. This can be achieved with:
  +
  +
<pre>
  +
:set wrap linebreak nolist
  +
</pre>
  +
  +
Note that this may lead to a bunch of screen lines being taken up by only a single "real" line, so commands like j and k which move on real lines will skip over a lot of screen lines. You can use gj and gk to move by screen lines.
   
 
==References==
 
==References==
Line 37: Line 55:
   
 
==Comments==
 
==Comments==
  +
This doesn't work in vim7.3. I get no text wrapping with these options:
  +
  +
:set
  +
--- Options ---
  +
autoindent hidden scroll=42 tabstop=4
  +
background=dark history=50 shiftwidth=4 textwidth=78
  +
comments=:# hlsearch showcmd ttyfast
  +
commentstring=#%s ignorecase showmatch ttymouse=xterm2
  +
define=[^A-Za-z_] incsearch smartcase viminfo='20,"50
  +
expandtab modified smartindent visualbell
  +
filetype=perl pastetoggle=<F11> softtabstop=4 t_Sb=^[[4%dm
  +
helplang=en ruler syntax=perl t_Sf=^[[3%dm
  +
backspace=indent,eol,start
  +
errorformat=%f:%l:%m
  +
fileencoding=utf-8
  +
fileencodings=ucs-bom,utf-8,latin1
  +
formatoptions=bctloq
  +
guicursor=n-v-c:block,o:hor50,i-ci:hor15,r-cr:hor30,sm:block,a:blinkon0
  +
include=\<\(use\|require\)\>
  +
includeexpr=substitute(substitute(v:fname,'::','/','g'),'$','.pm','')
  +
indentexpr=GetPerlIndent()
  +
indentkeys=0{,0},:,0#,!^F,o,O,e,0=,0),0],0=or,0=and
  +
isfname=@,48-57,/,.,-,_,+,,,#,$,%,~,=,:
  +
keywordprg=perldoc -f
  +
----
  +
This feature has worked for many years in every version of Vim since it was introduced. What were you expecting to happen? What happened instead? With the settings above, you should see the text automatically reflow whenever you type text that goes beyond the 78th column. But just setting these options won't automatically wrap anything until you type. And when it does wrap, it will do so by inserting newlines. --[[User:Fritzophrenic|Fritzophrenic]] ([[User talk:Fritzophrenic|talk]]) 18:11, July 10, 2015 (UTC)
  +
----
  +
The problem turned out to be that I had to remove the 'l' (lowercase L) from formatoptions before word-wrapping would work. -- 14:51, July 13, 2015 (UTC)

Revision as of 14:53, 13 July 2015

Tip 850 Printable Monobook Previous Next

created 2005 · complexity basic · author mmj · version 6.0


You can set the text width using :set textwidth=n (or :set tw=n) where n is a positive integer, for example:

:set tw=79

Also make sure that you have the "t" formatoption set!

:set formatoptions+=t

That will automatically wrap text as close to 79 characters as white space allows without exceeding the 79 character limit. This option wraps at word boundaries.

The textwidth option can be unset using:

:set tw=0

If you want to apply this to specific areas; bring the cursor at the beginning of the text you want to format and type gq. Now specify the range, say $ to format a large line.

:set wm=2

sets a wrap margin of 2 characters from the right window border. A system-dependent EOL character is inserted and the line wraps as you type. This option may be useful in some situations, but probably is not what you are looking for.

Use

gq

on a line or paragraph that is too long, and vim will wrap it automatically at your assigned textwidth.

The above methods will do a "hard" wrap of your text, by inserting newline characters. An alternative method is a "soft" wrap which does not change the text but simply displays it on multiple lines. This can be achieved with:

:set wrap linebreak nolist

Note that this may lead to a bunch of screen lines being taken up by only a single "real" line, so commands like j and k which move on real lines will skip over a lot of screen lines. You can use gj and gk to move by screen lines.

References

Comments

This doesn't work in vim7.3. I get no text wrapping with these options:

set

--- Options ---

 autoindent          hidden              scroll=42           tabstop=4
 background=dark     history=50          shiftwidth=4        textwidth=78
 comments=:#         hlsearch            showcmd             ttyfast
 commentstring=#%s   ignorecase          showmatch           ttymouse=xterm2
 define=[^A-Za-z_]   incsearch           smartcase           viminfo='20,"50
 expandtab           modified            smartindent         visualbell
 filetype=perl       pastetoggle=<F11>   softtabstop=4       t_Sb=^[[4%dm
 helplang=en         ruler               syntax=perl         t_Sf=^[[3%dm
 backspace=indent,eol,start
 errorformat=%f:%l:%m
 fileencoding=utf-8
 fileencodings=ucs-bom,utf-8,latin1
 formatoptions=bctloq
 guicursor=n-v-c:block,o:hor50,i-ci:hor15,r-cr:hor30,sm:block,a:blinkon0
 include=\<\(use\|require\)\>
 includeexpr=substitute(substitute(v:fname,'::','/','g'),'$','.pm',)
 indentexpr=GetPerlIndent()
 indentkeys=0{,0},:,0#,!^F,o,O,e,0=,0),0],0=or,0=and
 isfname=@,48-57,/,.,-,_,+,,,#,$,%,~,=,:
 keywordprg=perldoc -f

This feature has worked for many years in every version of Vim since it was introduced. What were you expecting to happen? What happened instead? With the settings above, you should see the text automatically reflow whenever you type text that goes beyond the 78th column. But just setting these options won't automatically wrap anything until you type. And when it does wrap, it will do so by inserting newlines. --Fritzophrenic (talk) 18:11, July 10, 2015 (UTC)


The problem turned out to be that I had to remove the 'l' (lowercase L) from formatoptions before word-wrapping would work. -- 14:51, July 13, 2015 (UTC)