The auto-indent doesn't work within C-style multi-line comments: it ignores the indentation of the previous line. For example (|
is caret):
/**
* Multi line comment.
* Indented line|
*/
The current indentation after pressing Enter:
/**
* Multi line comment.
* Indented line
* |
*/
The expected indentation:
/**
* Multi line comment.
* Indented line
* |
*/
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.