I want to run a macro I just recorded in register \"x\" on every single line of an open buffer, from my cursor to end of the buffer, in vim. How do I do that?
x
Personally I would do
VG:normal @x
Edit: changed register to the one you specified.