How to increase the vertical split window size in Vim

后端 未结 9 1623
抹茶落季
抹茶落季 2020-12-22 15:57

:vsplit (short form: :vs) split the Vim viewport vertically. :30vs splits the viewport, making the new window 30 characters wide. Once

9条回答
  •  隐瞒了意图╮
    2020-12-22 16:07

    I am using the below commands for this:

    set lines=50     " For increasing the height to 50 lines (vertical)
    set columns=200  " For increasing the width to 200 columns (horizontal)
    

提交回复
热议问题