I would like to get this indentation when working with classes / structs:
class MyClass
{
public:
MyClass();
}
However the text formatting option only allows for either this:
class MyClass
{
public:
MyClass();
}
or that:
class MyClass
{
public:
MyClass();
}
So it only considers the access modifier itself instead of the code after it. The problem with this is that it formats it everytime wrong again when I copy/paste or just want to format existing code. Is there any way around this without manually formatting it everytime again?