Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Indenting issue after access specifiers in Visual Studio Express [duplicate]

I am using Visual Studio Express 2013

After I use an access specifier, I want Visual Studio to automatically indent my members another 4 spaces further than my access specifier; but instead, it keeps the members in line with the access specifier. Is there a way to fix this?

Example: This is what is does:

class MyClass {
    public:
    int myInt;
};

This is what I want:

class MyClass {
    public:
        int myInt;
};
like image 632
Driggers Avatar asked Dec 20 '13 03:12

Driggers


1 Answers

No, there isn't a way to do this in Visual Studio.

However, a feature request has been made.

like image 67
Lightness Races in Orbit Avatar answered Oct 05 '22 11:10

Lightness Races in Orbit