I'm looking for a VIM plugin that can do these kind of thing. Let's say I have a function in a .cpp file
void myFunction(int arg1, int arg2, int arg3){
//code
}
The function definition is defined in the .h file. So every time I change the function name or add a new argument to the function, I have to go back the the .h file to do the same.
Is there a VIM plugin that can automate this task?