如何对所有打开的缓冲区进行替换?
可能的重复:
vim:搜索替换所有可写缓冲区
我可以使用 :%s/foo/blah/g
将当前缓冲区中所有出现的“foo”替换为“blah”。我怎样才能同时在所有打开的缓冲区上执行此操作?
Possible Duplicate:
vim: search replace over all writable buffers
I can use :%s/foo/blah/g
to replace all occurrences of "foo" with "blah" in the current buffer. And how can I do it on all open buffers at once?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 bufdo 对所有打开的缓冲区进行操作。
:help bufdo
示例:
:bufdo %s/main/mains/
将在所有打开的缓冲区上运行搜索和替换。
Use bufdo to operate on all open buffers.
:help bufdo
Example:
:bufdo %s/main/mains/
Will run the search and replace on all open buffers.