Originally Posted By: tfabris

When I try to enter this regex (which *WORKS* in git blame though it halts at the first curlybrace it finds):
Code:
/^MyFunctionNameToLocate/,/^}/

Oh, and that's not one regex -- that's two different regex, separated by a comma:
Code:
/^MyFunctionNameToLocate/
and
Code:
/^}/
.