标签: vim command
我正在使用命令:%s/foo/bar/g | wq来查找和替换使用vim。如果模式可用但是如果模式不可用,它可以正常工作Error detected while processing command line: E486: Pattern not found: foo 即使没有找到图案,我怎么能强行退出?我在上面的命令中尝试wq!但没有帮助
:%s/foo/bar/g | wq
Error detected while processing command line: E486: Pattern not found: foo
wq!
答案 0 :(得分:1)
问题在于substitute发出错误。您可以设置标记e
substitute
e
:%s/foo/bar/ge | wq
应该阻止“不匹配”错误破坏映射或命令。
:h :s_flags