I\'m trying to match the contents that belong between a certain (
and its matching )
as found by vim when using the motion %
.
As Jens told, this cannot be done with Vim regular expressions.
However if you want to do some special processing you can possibly do the following:
^@
) after the opening parenthese and before the closing parenthese using the %
binding.