Pavel
Pavel

Reputation: 1

What is a shortcut for hints in kdevelop?

For example I have a function f:

int f(int a) {
  return a;
}

or something. Then whenever I call it, I want to see what arguments it takes, in Eclipse I can do ctrl + space, what about kdevelop?

Upvotes: 1

Views: 344

Answers (1)

Mustafa Berkay Mutlu
Mustafa Berkay Mutlu

Reputation: 2134

This is from the Customizing code auto-completion web page:

On the other hand, Full completion will additionally show the type for each entry, and in the case of functions, also the arguments they take. Also, if you are currently filling in the arguments to a function, full completion will have an additional info-box above the cursor that will show you the current argument you are working on.

I think you need to switch to the Always full completion:

The editor's code completion can be customized via Settings → Configure Editor → Editing → Auto Completion.

Read more about customization in here.

Upvotes: 1

Related Questions