I'm asking for exactly what Dmitry Frank described. I want indent with tabs up to the indent level of the statement, and spaces after. If I came across otherwise, I did not mean to. Continuation lines should indent up to the level of the statement, then spaces afterwards. So I think that SE should handle this with "line continuation indent".
With the way SE is now, SE is putting a tab in the "alignment" part instead of spaces, in this example:
>--->---int var1.........= 0,
>--->---....another_var..= 1,
>--->---....third_var....= 2;
I would set "line continuation indent" to 4, and "tab indent" to 4. But SE will put 1 tab for the line continuation and will give me this instead:
>--->---int var1.........= 0,
>--->--->---another_var..= 1,
>--->--->---third_var....= 2;
My request is that SE put 4 spaces for the line continuation alignment instead of 1 tab here.
Now that I have articulated this more clearly, is it possible for SE to do this?