CLion C++ formatting -


hey there know how achieve following:

i format piece of code (1. clion default, 2. want)

mat<int, 4> m2({                        vec<int, 4>({2, 3, 4, 5}),                        vec<int, 4>({2, 3, 4, 5}),                        vec<int, 4>({2, 3, 4, 5}),                        vec<int, 4>({2, 3, 4, 5})                }); 

i have this:

mat<int, 4> m2({     vec<int, 4>({2, 3, 4, 5}),     vec<int, 4>({2, 3, 4, 5}),     vec<int, 4>({2, 3, 4, 5}),     vec<int, 4>({2, 3, 4, 5}) }); 

i couldn't figure out right settings. ideas?

thank you.

sorry, can not. have similar issue in tracker. please, vote!


Comments

Popular posts from this blog

java - SSE Emitter : Manage timeouts and complete() -

Voice chat over bluetooth between Android & Python (pybluez) -

Integrate jquery-globalize into an ASP.NET Core MVC App -