On 26 Oct 2008, at 02:48, Mikael Høilund wrote:
[...] I'd also like to see this, as I think this would enable me to let this auto-indent:
class Foo def bar; end private def baz; end end
I think that is already possible. You want to match ‘private’ in both the decrease and increase indent patterns. At least a similar construct in C++ indents as expected:
struct Foo { Foo (); private: void bar (); };