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.
我已经能够找到很多在另一个方向上工作的东西,但到目前为止我没有太多运气。
我希望能够read从命令行进入一个新的缓冲区。我希望有类似的东西:
read
:r!tac % | new
并且新缓冲区将包含tac %
tac %
有什么合理的方法可以做到这一点吗?
啊哈 - 原来答案是使用#,我猜这是最后使用的缓冲区(?)
#
:enew | r!tac #
将输出读tac <current buffer>入新缓冲区。
tac <current buffer>