Anyway to get Visual Studio C++ to autocomplete parameter list? -


very specific issue specific piece of software, hope fine folks can help!

i define class in header.h file has few method declarations take parameters

class lazy{     void complainforever(char * complaint, float forever = infinity); }; 

then go lazy.cpp file define function. here psuedo timelapse of how lazy am.

void lazy:: // <-- autocomplete kicks in, select method , hit enter  void lazy::complainforever // <-- parameter list missing, defeating purpose 

at point, either have type hand, or copy/paste parameter list header.h file

the question this! there keyboard shortcut or method @ having autocomplete take care of parameter list me?

thank in advance!

why don't try visual assist x. isn't free though.


Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -