How do I modify the java language definition bundle foldingStartMarker and foldingStopMarker entries to allow for folding of these types of comment blocks?
This is the comment style:
/** * This is a comment... * Yet another comment... */
I've tried this:
foldingStartMarker = '(\{\s*(//.*)?$|^\s*// \{\{\{|^\s*\/\*\*)'; foldingStopMarker = '^\s*(\}|// \}\}\}$|\*\/)';
I get the first match for '/**' characters, but I can't get it to find the StopMarker '*/'.
Thanks!