Extend Keyword Support

extend keyword support to include nested keywords like

class A{
    private:
        class B{
            protected:

here protected should not break indentation and become

class A{
    private:
        class B{
    protected: