Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何\n用vim语言实现一个新行();不使用正则表达式。
\n
当我使用这条指令时,结果是:
^@
但是没有新线...
谢谢
我不确定你到底想要什么,但是要在缓冲区中添加一个新行,只需输入:put =
:put =
或者,您可以使用:call append(1, 'foobar')
:call append(1, 'foobar')