Reputation: 419
Example:
void Sandwich(string ham, string bread, int cheese){
...do stuff...
};
When I type Sandwich(, I need to see what are the required parameters. How can I do that?
Upvotes: 5
Views: 1950
Reputation: 2956
You need to enable the Auto Popup Code Completion option in Tools > Options > Editor > Code Completion.
Enable it for All Languages, the selection for individual languages does not seem to work, not for PHP at least. It seems there's a bug with the All Languages deactivation taking precedence over the rest of the languages.
Upvotes: 0
Reputation: 343
For non-Mac, you can use Ctrl+P
. For Mac, you can use Command + P
Upvotes: 8