I'm implementing hundreds of similar functions at the moment which take on the form
String name(String arg1, String arg2, String arg3, String arg4) {
trampoline("name={name}&arg1={arg1}&arg2={arg2}&arg3={arg3}&arg4={arg4}",
name, arg1, arg2, arg3, arg4);
}
The tricky part is the function can take between 2 and 10 arguments.
If I could have a way to make vim ask me for "Name of function: ", "Number of args: ", "arg1: " I could easily build these functions.
If you need further information to help you help me, I would be more than willing to supply.
Thanks