In Visual Studio and Netbeans, I can add custom regions with line comments.
- visual style of the studio:
#region Description
Your code goes here...
#endregion
-netbeans style:
// <editor-fold desc="Description">
Your code goes here...
// </editor-fold>
My question is: can I stack user regions in an intellij idea?
source
share