How To Insert Incrementing Numbers with words by M

2019-04-06 02:49发布

I want to add Incrementing Numbers with words by Multicursor in jetbrains IDE(IntelliJ IDEA) .

Is there any way to do it by Live template? I want to do things like this image :

enter image description here

2条回答
Ridiculous、
2楼-- · 2019-04-06 03:16

You could use String Manipulation plugin to do that (Increment/Decrement | Increment duplicate numbers).

查看更多
放荡不羁爱自由
3楼-- · 2019-04-06 03:20

The plugin is not working on my WebStorm, there could be another way using unix command line:

seq 1 10 | xargs printf 'string%d\n'

查看更多
登录 后发表回答