hello, i was wondering if it would be possible to include an option to disable the default behavior when auto-completing a function which is declared with default prameters.
example:
#include <stdio.h>
int foo(int x=0);
//int foo(int x/*=0*/){ <--Normal behavior.
int foo(int x){ //<--Behavior i would prefer.
printf("%d\\n", x):
}
int main(int argc, char **argv){
foo(1);
return 0;
}
i'm banking on the fact that hopefully adding a simple boolean check in your code is all that would really need to be done to disable/enable such behavior.
thanks for the great product otherwise=-).