I'm trying to match a curly bracket in a foldingStopMarker but I can't for my life get it to work. The startmarker works but not the stopmarker. Eg.
works { hello }
doesntwork { hello }
My language is defined as:
foldingStartMarker = '{\s*$'; foldingStopMarker = '^\s*}';
/Tomas
On 1/1/2006, at 23:38, Tomas Pihl wrote:
I'm trying to match a curly bracket in a foldingStopMarker but I can't for my life get it to work. [...]
Start and stop markers need to have the same indent level in the source code. That's why it is not working (and can't be made to work).