在 Vim 中,有一个非常好的功能可以查找/替换每行中的第一个匹配项。这实际上是默认行为。如何在崇高文本中获得相同的行为?
我需要能够在每一行中标记/找到第一个(也是唯一的!)字符,例如“=”,以便我可以轻松地标记/复制/剪切该特定字符之前和之后的内容。请注意,每一行中可能有很多这个特定的字符。
具体例子:
我有一个长长的 java 属性列表,格式如下:
my.property.link1=<a href="asdfs">Link 1</a>
my.property.link22=<a href="asdfs">Link 22</a>
my.property.link333=<a href="asdfs">Link 333</a>
my.property.link4444=<a href="asdfs">Link 4444</a>
我想在每行中标记第一个“=”,以便能够选择所有前面的文本(与“=”之前的文本数量无关)来剪切或复制文本。这种行动的粘贴结果将是:
my.property.link1
my.property.link22
my.property.link333
my.property.link4444