Issue 160265
Summary [clang-format] Option to align multi-line comment lines with the `*` character
Labels clang-format
Assignees
Reporter parmi93
    ```c
/* This is a multiline comment, 
* and this is the next line.
*/
```

This comment should be formatted into:
```c
/* This is a multiline comment, 
 * and this is the next line.
 */
```

There is an option ([`AlignTrailingComments`](https://clang.llvm.org/docs/ClangFormatStyleOptions.html#aligntrailingcomments)) that does something similar, but it only works with single-line comments.
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to