I'm trying to set up my adaptive formatting to match the beautifier for my C code. Right now I'm having trouble getting the alignment associated with broken lines to work with adaptive formatting. When I do the beautifier I get code that looks like this:
memset(&asdf,
0,
sizeof(asdf));
But when I am actually typing in the code and hit enter after the comma, it looks like this:
memset(&asdf,
0,
sizeof(asdf));
How do I set up my Slickedit options so they both look like the top example?