Hello, I would love someone to create or tell me if there’s one plugin for at least C language, which could rename all the variables, functions etc. in the code when I’m changing one. For example:
int a;
…some code…
if(a > something)
a = something;
…some code…
So if I change a to for example b, a should change to b all over the code. It’s possible to do it with CTRL+D or Alt+F3 but that’s very inconvenient, because if you’ve got for example 2 variables:
char a, ab;
And if you want to change only a, Alt+F3 would change ab also.