gpt4 book ai didi

vim - 如何在不同长度的多行末尾附加一个数字序列?

转载 作者:行者123 更新时间:2023-12-01 11:41:17 38 4
gpt4 key购买 nike

我正在重写一些脚本。我想附加到像这样的许多行:

short=s[
verylongword=s[
P=s[

这些数字:

0
1
2

得到这个:

short=s[0
verylongword=s[1
P=s[2

我已经尝试过使用 VIM ctrl+v 放置我不能将它们放在行尾...如果使用 vim 是不可能的,即使使用 emacs 也是最好的方法...

编辑:现在我知道我可以用 this method 来做如果我在示例中的列中有数字,那么问题是如何在不先编写序列的情况下更快地附加数字序列?

最佳答案

使用 vim 你可以使用下面的搜索和替换语句

%s/$/\=line('.')-1

分解

%                    apply to entire buffer
s substitute
/$ search for end of line
/\=line('.')-1 replace with linenumber - 1

关于vim - 如何在不同长度的多行末尾附加一个数字序列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20443993/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com