Word wrap in Gvim

家住魔仙堡 提交于 2019-11-29 20:35:50

Looks like there is a solution online after all.

:set formatoptions=l
:set lbr

Link: http://vim.wikia.com/wiki/Word_wrap_without_line_breaks

You can

:set nowrap 

to just let huge lines scroll of the edge of your screen. But tw is probably the better way to go.

you can

:set wrap linebreak nolist
:set tw=78

sets the text width to 78 characters. You can use "[movement]gq" to re-wrap some text.

I use the following settings to wrap long lines for things like markdown files.

:set wrap
:set linebreak
:set nolist  " list disables linebreak
:set textwidth=0
:set wrapmargin=0

Source: http://vim.wikia.com/wiki/Word_wrap_without_line_breaks

You can also use wrapmargin, which the manual defines as:

Number of characters from the right window border where wrapping
starts.  When typing text beyond this limit, an <EOL> will be inserted
and inserting continues on the next line.
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!