This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CODECOMPOSER: Theia document formatting of comments

Part Number: CODECOMPOSER

Tool/software:

When using auto format, it munges up comment blocks surrounded by OG comment delimiters.  For example, if I have this comment:

/*
   Step Delay: a milliseconds delay between the movement of each servo.  Allowed values from 10 to 30 msec.
   M1=base degrees. Allowed values from 0 to 180 degrees
   M2=shoulder degrees. Allowed values from 15 to 165 degrees
   M3=elbow degrees. Allowed values from 0 to 180 degrees
   M4=wrist vertical degrees. Allowed values from 0 to 180 degrees
   M5=wrist rotation degrees. Allowed values from 0 to 180 degrees
   M6=gripper degrees. Allowed values from 10 to 73 degrees. 10: the tongue is open, 73: the gripper is closed.
  */

After right-click format document, I get this:

/*
  Step Delay: a milliseconds delay between the movement of each servo.  Allowed
  values from 10 to 30 msec. M1=base degrees. Allowed values from 0 to 180
  degrees M2=shoulder degrees. Allowed values from 15 to 165 degrees M3=elbow
  degrees. Allowed values from 0 to 180 degrees M4=wrist vertical degrees.
  Allowed values from 0 to 180 degrees M5=wrist rotation degrees. Allowed values
  from 0 to 180 degrees M6=gripper degrees. Allowed values from 10 to 73
  degrees. 10: the tongue is open, 73: the gripper is closed.
 */

The obvious work around is to use the newfangled // delimiter, but I would think that auto-format should just leave comments alone.