On Tue, 1 Sep 2009 11:21:03 +0200 Joerg Desch jd.vvd@web.de wrote:
You can revise or write a new lexer for Scintilla that handles those marks, or you can use the alternatives already defined in the C/C++ lexer for Scintilla, which are:
For opening:
//{
and, for closing:
//}
This is correct, thanks Randy.
OK. I assume there is no option to configure this?
No, Scintilla doesn't have a lexer property for it AFAIK.
These don't work out of the box in Scintilla, you must set a specific property to make them work--let me see if I can find that...ahh, yes--you need to set the property "fold.comment=1" in a property file.
Is this a property which is available in the geany configuration files?
Geany doesn't support Scintilla's property names at all, but has its own filetype-specific settings, some of which may be similar - but in this case, the //{ user folding strings should just work for C/C++ files - or it does here anyway. There is no setting.
Regards, Nick