Nano 在 Vim 中查找和替换?
Vim 的查找和替换功能非常强大且非常有用,但有时我不想要这种功能 - 添加反斜杠可能会很麻烦。有时,我只想在整个文档中精确查找和替换。没有图案。没有魔法。
Nano 的查找/替换正是我想要的,非常好。
有没有插件或命令可以为我提供这个?
Vim's find and replace is very powerful and very useful however sometimes I don't want that power - adding backslashes can be a drag. Sometimes, I just want to find and replace exactly across a whole document. No patterns. No magic.
Nano's find/replace is exactly what I want, pretty much.
Is there a plugin or command that will provide me with this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
然后禁用该搜索的魔法 -
/\V(nothing)+ is magic* but backslash
。请参阅:帮助魔法
。这实际上就是 gvim 中的“搜索”对话框默认执行的操作。Then disable the magic for that search --
/\V(nothing)+ is magic* but backslash
. See:help magic
. This is actually what the Search dialog in gvim does by default.