You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When indenting with a region, it automatically places brackets and indentation length to K&R style (or something like that) instead of whatever c-indent-style is. On my system, c-indent-style is set to gnu.
I.e, it goes from:
if (...)
{
....
}
to
if (...) {
....
}
The text was updated successfully, but these errors were encountered:
When indenting with a region, it automatically places brackets and indentation length to K&R style (or something like that) instead of whatever
c-indent-style
is. On my system,c-indent-style
is set tognu
.I.e, it goes from:
if (...) { .... }
to
if (...) { .... }
The text was updated successfully, but these errors were encountered: