I have a good amount of code which looks like this:
rule requestIntHoleTemplate {
constr:HoleCall;
y:PrimitiveIntRange;
:IntRangeHole(constr, y);
modify {
emit("Request template IntRangeHole\n");
}
}
I'd like to skip over the entire block in vim, not just to the next empty line as }
does. I can accomplish it with $%
, but that wouldn't work if I'm on an empty line preceding the block. I suppose I could alias }{j$%j
. Are there other navigation commands I'm missing?
Thanks in advance.