Insert a newline without entering in insert mode, vim

后端 未结 7 932
广开言路
广开言路 2021-01-31 13:24

I want insert newlines in normal mode in vim using Shift-Enter and Ctrl-Enter. I try some solutions and mixing solutions from Vim Wikia - Insert newline wi

7条回答
  •  名媛妹妹
    2021-01-31 14:09

    You can use a hack to do this.

    In edit mode, you can use p to paste the current clipboard. Since o adds a newline, you can use oddp to add a new line below the cursor; from there, p will add a new line until you delete something else.

提交回复
热议问题