C++ access modifier auto indentation in visual studio 2010 slowly driving me crazy - can it be changed? -


when programming c++ in visual studio, insists on giving me these god-awful indendations on access modifiers - condolences if likes them way ;) (a joke folks!)

public class myclass { public:    myclass();    ~myclass();    int wowanint(); } 

needless say, want this:

public class myclass {     public:        myclass();        ~myclass();        int wowanint(); }  

is there way achieve using (i've got resharper , highlighter) or perhaps vanilla vs?

the closest can built-in visual studio editor settings change indenting mode "smart" "block" (tools -> options -> text editor -> c/c++ -> tabs -> indenting).

when this, can indent like, lose "automatic indenting." basically, whenever press [enter] new line indented same number of tab stops / spaces previous line , won't automatically reformat lines them line up.


Comments

Popular posts from this blog

c++ - QTextObjectInterface with Qml TextEdit (QQuickTextEdit) -

javascript - angular ng-required radio button not toggling required off in firefox 33, OK in chrome -

xcode - Swift Playground - Files are not readable -