比如有文本如下:
this is a thisisaverylongword text.
this is a thisisaverylongword text.
this is a thisisaverylongword text.
this is a thisisaverylongword text.
this is a thisisaverylongword text.
我们发下有一个很长的单词:thisisaverylongword
如果要搜索,一般命令是: ":/thisisaverylongword
但是这样输入thisisaverylongword, 这个很长的单词很难输入, 所以有更简单的办法:
把光标置于thisisaverylongword之上, 然后按*键,或者#键即可直接进行搜索.
*键是向下搜索, #键是向上搜索.
如果要替换, 就没有什么快捷键了. 一般的做法是 :%s/thisisaverylongword/ABCD/g"
同样,这还是要输入thisisaverylongword, 更简单的办法应该是:把光标置于thisisaverylongword
之上, 然后
:%s/
在命令格式下, CTRL+R代表插入寄存器, CTRL+W代表当前单词.
也可以通过寄存器的方式来使用. 使用v选择一个区域, 然后 "ay , 存取寄存器a
然后 :%s/
ABCD 可以用同样的方法,使用寄存器.