Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java: Triple Curly Bracing

I've been given some code with commenting unlike anything I've come across before:

//{{{ Imports
import imports;
//}}}

It is the same for each method block,

//{{{ above the code block  
//}}} below the code block

Also see: http://en.wikipedia.org/wiki/Folding_editor


1 Answers

A quick search for "triple curly" comment suggests it's "Emacs folding mode".

Or some other code folding marker in any case.

like image 175
aib Avatar answered Dec 31 '25 04:12

aib