Re: m:foobar syntax
> 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
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