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 * | */ ```
In case this is an expected behavior rather than a bug, please consider it as a feature request.
Yes its the expected behaviour. Indents apply before the first non-whitespace character only, so not after the `*`.
github-comments@lists.geany.org