On 18/06/2012, at 20.50, domguin wrote: > Still no joy unfortunately... I have the tags set as follows: > > foldingStartMarker = '(^//\..*$)|/\*'; > foldingStopMarker = '(^//\.\..*$)|\*/'; The start marker would also match ‘//..’. Try instead: foldingStartMarker = '(^//\.(?!\.).*$)|/\*';