vscode-better-align
vscode-better-align copied to clipboard
[enhancement] Add suppot to align class variables and functions in c++ (.h files)
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.
This has been fixed in v1.4.0