user2468425
user2468425

Reputation: 419

What's the shortcut for showing a function parameters in NetBeans?

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

Answers (2)

andreszs
andreszs

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

Pham Van Vung
Pham Van Vung

Reputation: 343

For non-Mac, you can use Ctrl+P. For Mac, you can use Command + P

Upvotes: 8

Related Questions