-
Bug
-
Resolution: Unresolved
-
Medium
-
Code Composer Studio Theia
-
CCSNXT-1513
-
-
CCS_THEIA_1.4.0
-
None
When using auto format, it munges up comment blocks surrounded by OG comment delimiters.
Document formatting is handled by the clangd extension. The behavior can be modified using a `.clang-format` file. You can create a `.clang-format` file in your home directory and use the options specified here:
https://clang.llvm.org/docs/ClangFormatStyleOptions.html
Adding this line to the file should fix the issue and comments wouldn't be formatted:
ReflowComments: false
The fix is to set the Default value to false.