Re: m:foobar syntax

2002-06-13 Thread Damian Conway
> I came across this problem when writing the vim syntax file: > > How can we tell the difference between these?: > > m:option(pattern) > m:option(argument)/pattern/ Easy. As A5 states, (...) are no longer leagal regex delimiters. So the first is a syntax error. :-) Damian

m:foobar syntax

2002-06-13 Thread Luke Palmer
I came across this problem when writing the vim syntax file: How can we tell the difference between these?: m:option(pattern) m:option(argument)/pattern/ Luke