A feature I'd like to see
In Visual Studio .NET it's possible to define your own code-folding regions:
#region Network communication code
public void myMethod1();
{
....
}
public void myMethod2();
{
....
}
#endregion
I'd really like to see something like this implemented in IDEA, perhaps like
so:
// @region Network communication code
public void myMethod1();
{
....
}
public void myMethod2();
{
....
}
// @endregion
... it's amazing how being able to organise blocks of code and then fold
them away can help.
Please sign in to leave a comment.
Please vote for a similar feature request in tracker:
http://www.intellij.net/tracker/idea/viewSCR?publicId=4673