Currently vim aligns my public: like this:
class foo { public: void bar(); }
Let's say 2 spaces before public: and then after it the full tab (these are three spaces in my case).
How can I make it align like this:
class foo { public: void bar(); }
As in void bar(); indented on one tab (three spaces), and public: is it kind of "half" (or one space)?
source share