使用Vim中的递增值搜索并替换

前端之家收集整理的这篇文章主要介绍了使用Vim中的递增值搜索并替换前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
让我说我写了一个简单的CSS规则,如下所示:
.star_10 {
  background: url(stars.png) no-repeat 0 0;
}

我需要10,所以我复制了9次。

.star_10 {
  background: url(stars.png) no-repeat 0 0;
}
.star_10 {
  background: url(stars.png) no-repeat 0 0;
}
.star_10 {
  background: url(stars.png) no-repeat 0 0;
}
.star_10 {
  background: url(stars.png) no-repeat 0 0;
}
.star_10 {
  background: url(stars.png) no-repeat 0 0;
}

等等

现在我想用增加的值来改变star_10和0,所以它看起来像这样:

.star_10 {
  background: url(stars.png) no-repeat 0 0;
}
.star_9 {
  background: url(stars.png) no-repeat 0 -18px;
}
.star_8 {
  background: url(stars.png) no-repeat 0 -36px;
}
.star_7 {
  background: url(stars.png) no-repeat 0 -54px;
}

等等…

那么我如何搜索/替换每个实例,做一个计算和写?

您可以使用宏来轻松实现。让我们说你只有这样:
.star_10 {
  background: url(stars.png) no-repeat 0 0;
}

将光标放在第一个点(在.star10中),并在普通模式下键入以下内容

qa3yy3jp^Xjt;18^Xk0q

解释:

> qa将在注册表“a”中开始宏记录。
> 3yy将yank(复制)以下3行。
> 3j将光标3向下放。
> p将粘贴过去的yanked文本。
> ^ X(ctrl x)将减小星级号码。
> j将光标放在一行。
> t;将光标放在下一个;在当前行。
> 18 ^ X将使后台的y坐标递减18;
> k将光标放在一行,
> 0将光标放在行的起点处。
> q将完成宏记录。

之后,你可能会有这样的事情。

.star_10 {
  background: url(stars.png) no-repeat 0 0;
}

.star_9 {
  background: url(stars.png) no-repeat 0 -18;
}

而已。只需将光标放在.star_9上的点上,然后按8 @ a执行多次记录的宏。

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

猜你在找的Bash相关文章