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

不打扰是莪最后的温柔 提交于 2019-12-08 15:48:35

问题


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;
};

回答1:


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

However, a feature request has been made.



来源:https://stackoverflow.com/questions/20695923/indenting-issue-after-access-specifiers-in-visual-studio-express

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!