Is there any plan for code format features in the future version?
The visual studio c++ aligns the parameters in different way between function definition and other places.
Example:
int SayHello(char* firstname,
char* lastname)
{
printfxxxxxxxxxxxxxx("%s.%s\\n",
firstname,
lastname);
}
but we want to format the printfxxxxxxxxxxxxxx's parameters' alignment as the same as SayHello's
printfxxxxxxxxxxxxxx("%s.%s\\n",
firstname,
lastname);
I think that the format features are wondful and necessary for va, don't you?