2

Is there a way to go from the below

int a; ///< This is a variable
int b = 3; ///< This is another variable

To the below?

int a;      ///< This is a variable
int b = 3;  ///< This is another variable
Ayberk Özgür
  • 4,986
  • 4
  • 38
  • 58

1 Answers1

2

align_right_cmt_span should be the correct setting.

CJCombrink
  • 3,738
  • 1
  • 22
  • 38