I am trying to read a lot of c/perl code through vim which contain many single letter variable names.
It would be nice to have some command which could help me change the name of a variable to something more meaningful while I'm in the process of reading the code so that I could read the rest of it faster.
Is there some command in vim which could let me quickly do this.
I dont think regexes would work cos
1) the same single letter name might have different purposes in different scoping blocks
2) the same combination of letters could part of another larger var name, or in a string or comment .. would not want to modify those
Any known solutions??