Vim全球替换(线)

前端之家收集整理的这篇文章主要介绍了Vim全球替换(线)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
“全局”选项不能按预期工作(这似乎最近才改变,但我无法找到差异的原因).

鉴于这条线:

ABA

我发出命令:

:S / A //克

我希望结果如下:

b

但是,生成的行是:

BA

我错过了什么?

您很可能在.vimrc中设置了gdefault.

来自:help gdefault:

When on,the ":substitute" flag 'g' is default on.  This means that
all matches in a line are substituted instead of one.  When a 'g' flag
is given to a ":substitute" command,this will toggle the substitution
of all or one match.

如果你没有在配置中设置它,你可以通过发出:verbose set gdefault?来查看它的设置位置.

原文链接:https://www.f2er.com/bash/386914.html

猜你在找的Bash相关文章