Hi,
On Fri, Nov 5, 2010 at 7:41 PM, Josh Varner josh.varner@gmail.com wrote:
If I understand you correctly, the end of the embedded section is simply the next '@@' start marker.
Yep.
So, change your end match to use a look-ahead: end = '^(?=@@)';
Ah, perfect! :)
I didn't knew that TextMate already supported that, coolness
Many thanks Josh,