This feels like a dumb question, but I can\'t find an answer on the Internet (or in VIM help). I\'m using VIM 7.2 on Mac OS X. All I want to do is wrap my lines at 72 characters
Try gggqG
to apply the new text width to the whole buffer.
gg
means : go to the beginning of buffer gq
means : reformat the text included in the motion G
means : go to the end of the buffer (It will works if the format options are correctly set, as detailed in Zyx post)
On the other hand, you could also display your existing text with a width of 72 characters by adding a modeline
at the beginning or end of your file. See :help modeline
Something like vim:tw=72
should work.
I am using Neovim and have met this issue too. After setting textwidth
to 80 in my init.vim
, the content of a text file does not change when I open the file. For the existing text, we have to manually format it with gggqG
.
When you type new characters in a line, the textwidth
option will work (you will get a linebreak automatically if the character number reaches 80).
I had this exact same issue and found the following solved the issue well enough for me:
autocmd FileType python setlocal textwidth=79 formatoptions+=t
Feel free to change python
to be your file type of choice (e.g. *
or comma separated list python,ruby,go,sh,javascript
)
See
:h fo-table
for details offormatoptions
I was looking for an answer to the same question and had to scramble around a bit before I found the solution in the VIM docs. So, i thought i will update the thread and save others the time.
The problem in my case was that the default ftplugin was disabling textwidth.
Just updating your .vimrc with (:set tw=79 && :set formatoptions+=t
) won't work since the fplugins are sourced after vimrc.
Here are the steps that i followed:
1) find out what your current formatoptions (inside vim)
:set formatoptions?
formatoptions=croql (note no 't')
2) create a filetype.vim file as suggested by vimdocs (http://vimdoc.sourceforge.net/htmldoc/filetype.html#ftplugin-overrule)
Overrule the settings after loading the global plugin.
You must create a new filetype plugin in a directory from the end of
'runtimepath'. For Unix, for example, you could use this file:
vim ~/.vim/after/ftplugin/fortran.vim
In this file you can change just those settings that you want to change.
3) add the line :set formatoptions+=t
&& :set textwidth=79
in that file.
Voila! next time when you open the file it will set the textwidth to your desired characters.
As a debugging aid you can always check which file is overriding your vimrc setting by prepending your command with verbose. So for e.g. if i want to check who updated the formatoptions last, i would type
:verbose set formatoptions?
formatoptions=croqlt
Last set from ~/.vim/after/ftplugin/fortan.vim
set formatoptions+=t
This may help you
Vim won't do anything unless requested. textwidth
will have an effect for currently edited lines if you either have t
(for non-comments only), c
(for comments only) or both in formatoptions
(if a
is not present there, then it will autowrap only when you reach the margin set by textwidth
), or if you use gq
to reformat your text. If I am not mistaking, you can set such formatexpr
or formatprg
so that textwidth
will be ignored.