C++ access modifier auto indentation in Visual Studio 2010 slowly driving me crazy - can it be changed?
问题 When programming C++ in Visual Studio, it insists on giving me these awful indentations on access modifiers - my condolences if anyone actually likes them this way ;) (a joke folks!) public class MyClass { public: MyClass(); ~MyClass(); int wowAnInt(); } Needless to say, I want this: public class MyClass { public: MyClass(); ~MyClass(); int wowAnInt(); } Is there any way to achieve this using anything (I've got ReSharper and Highlighter) or perhaps vanilla VS? 回答1: The closest you can get