标签: concatenation newline vim
我想知道如何用vim语言实现一个新行(\n);不使用正则表达式。
\n
当我使用此指令时,结果为:
^ @
但没有新线......
由于
答案 0 :(得分:1)
我不确定,你究竟想要什么,只是在缓冲区中添加一个新行,只需输入:put =
:put =
或者,您可以使用:call append(1, 'foobar')
:call append(1, 'foobar')