When auto-completing with Clang Complete, I’d like to make it show the function signature as well.
For instance, if I declare the below function:
int add(int a, int b) {
int result = a + b;
return result;
}
When I fire-up Clang Complete, I not only want the function name to pop-up in the auto-completion results, but also it’s arguments as well: add(int a, int b).
Try this