开发者

TAB Folding Console Eclipse Plugin

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 开发者_Python百科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.


Start using an actual logging framework such as Log4J / SLF4J and work with log-levels:
It'll make everything more manageable, rather then finding a short-term solution to parsing tab-depths..

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜