How To Insert Incrementing Numbers with words by Multicursor in jetbrains IDE(IntelliJ IDEA)?

后端 未结 5 1042
既然无缘
既然无缘 2021-02-03 21:53

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

5条回答
  •  粉色の甜心
    2021-02-03 21:58

    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'

提交回复
热议问题