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.
Vimscript 中是否有允许您简单地将文本打印到编辑器的功能或约定?该函数echo仅提供命令行打印功能,并不实际打印到编辑器。
echo
当您说“打印到编辑器”时,我认为您的意思是“打印到当前缓冲区”。如果正确,请查看:help append().
:help append()
我有时使用的工具是:redir @"(或:redir @a用于 register a),它将命令的输出重定向到缓冲区,因此您可以p使用它。要停止输出重定向,请说:redir end. 见:help :redir。
:redir @"
:redir @a
a
p
:redir end
:help :redir