在Gvim中换行
如何让Gvim的文字换行不会中断?
看起来好像有一个在线解决scheme。
:set formatoptions=l :set lbr
链接: http : //vim.wikia.com/wiki/Word_wrap_without_line_breaks
您可以
:set nowrap
只是让巨大的线条滚动屏幕的边缘。 但是tw可能是更好的方法。
:set tw=78
将文本宽度设置为78个字符。 你可以使用“[运动] gq”来重新包装一些文字。
您可以
:set wrap linebreak nolist
我使用以下设置来换行像markdown文件的长行。
:set wrap :set linebreak :set nolist " list disables linebreak :set textwidth=0 :set wrapmargin=0
来源: http : //vim.wikia.com/wiki/Word_wrap_without_line_breaks
您也可以使用手册中定义的wrapmargin作为:
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.