How to increase number when writing code?
已回答
Hi,
I want to write code like this:
int var1;
int var2;
int var3;
int var4;
...
int varN;
As you can see, only the number changed. I don't want to copy & paste the first line and modify the number. Is there a fast way to write code like this? The number maybe also expect to be descending.
请先登录再写评论。
String manipulation plugin provide this feature:
https://plugins.jetbrains.com/plugin/2162-string-manipulation
COOL, that's really what I want.