假设我在 Vim 中有以下文本:
file1.txt
file2.txt
file3.txt
renamed1.txt
renamed2.txt
renamed3.txt
我想要一个转换如下:
file1.txt renamed1.txt
file2.txt renamed2.txt
file3.txt renamed3.txt
我想到的是如下内容:
:1,3 s/$/ <the text that is 4 lines below this line>
我不知道如何指定<the text that is 4 lines below this line>
零件。
我尝试过类似.+4
(当前行下方 4 行)但无济于事。