vote up 1 vote down star

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

flag

5 Answers

vote up 5 vote down check

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

Or some other code folding marker in any case.

link|flag
vote up 2 vote down

jEdit uses {{{ and }}} to mark "explicit" folds.

link|flag
vote up 1 vote down

Actually, Vim uses those triple braces in comments, too.

Tell the one you got the code from, that folding this way is a bad idea. Vim can set fold points at syntactic folding hints, defined in the highlighting file.

link|flag
vote up 1 vote down

It may also be for some code generators. Some generators allow you to edit generated code, and use markers like that so the generator knows where it can regenerate.

link|flag
vote up -2 vote down

Maybe it's to emphasize a code block?

shrugs

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.