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() -

jquery - uncaught exception: DataTables Editor - remote hosting of code not allowed -

java - How to resolve error - package com.squareup.okhttp3 doesn't exist? -