vscode-better-align icon indicating copy to clipboard operation
vscode-better-align copied to clipboard

[enhancement] Add suppot to align class variables and functions in c++ (.h files)

Open AmitDavid opened this issue 2 years ago • 1 comments

The extension currently won't align in the following example:

class MyClass {
  public:
    int myNum; // Attribute (int variable)
    string myString; // Attribute (string variable)
};

to:

class MyClass {
  public:
    int    myNum;    // Attribute (int variable)
    string myString; // Attribute (string variable)
};

I guess this is because there is no "=" character in the lines.

AmitDavid avatar Jan 18 '23 09:01 AmitDavid

This has been fixed in v1.4.0

chouzz avatar Feb 01 '23 16:02 chouzz