Can I somehow make Eclipse autocomplete arguments in a method I am implementing?
Let's say I have
class A {
  void foo(const string& some_long_descriptive_name);
};
in the header. Now in the body I start type void A::foo( and I here I would like to just hit some button and get my argument(s) automatically filled in. Is that possible?
