On 14 Oct 2015, at 19:38, Carpii UK wrote:
Im trying to add code folding regular expressions for a templating language I use
Even if I pare it back to the most basic of examples, I cant seem to get it working..
{if (true)} {foo} {/if}
foldingStartMarker = '^{if}'; foldingStopMarker = '^{\if}';
Based on your example, I think it should instead be:
foldingStartMarker = '^{if.*}'; foldingStopMarker = '^{/if}';