How to stop line breaking in vim

前端 未结 11 2019
执笔经年
执笔经年 2020-12-12 10:06

I like that the long lines are displayed over more than one terminal line; I don’t like that vim inserts newlines into my actual text. Which part of .vimrc I should change?

11条回答
  •  失恋的感觉
    2020-12-12 10:52

    You may find set lbr useful; with set wrap on this will wrap but only cutting the line on whitespace and not in the middle of a word.

    e.g.

    without lbr the li
    ne can be split on
    a word
    

    and

    with lbr on the
    line will be
    split on 
    whitespace only
    

提交回复
热议问题