Hello,
Is there a plugin that allows you to fold lines starting with a tab. For debugging purposes in a hierarchy of classes, I put a number of tabs in front of each line depending on its depth since the first toString(nl) call.
each time I have this kind of structure
        public String toString(String nl) {
        ...
        String nnl = nl + "\t";
        controlledClass.toString(nnl);
        ...
        }
So now I have several pages of debug info and need to quickly manage it. If I could fold specific parts of the ouput, it would save me lots of parsing time.