Right now the standard emacs indentation works like the following:
switch (cond) {
case 0: {
command;
}
break;
}
I want the break; to line up with case.
Also, is there a list of the c-set-offset commands somewhere?
|
3
|
Right now the standard emacs indentation works like the following:
I want the break; to line up with case. Also, is there a list of the c-set-offset commands somewhere?
|
||||||
|
|
|
The biggest help (I've found) in customizing indentation is figuring out what cc-mode uses to indent the current line. That's what Here's how you can customize it. Move your cursor to the 'break;' line.
At which point, your code will be indented like:
For documentation on the offsets, check out the docstring for the variable
Similarly, you can add this to your .emacs:
The documentation for customizing indention is here and is worth reading. There are tons of ways to do it, so reading the manual is worth the time (if you want non-default indentation). And here's a pointer to all the syntactic symbols used in cc-mode. |
||||||
|