Does it happen when you run vim without scripts?
vim -u NORC
or
vim -u NONE
Also, try this:
vim -c "normal qa"
.That should start vim in recording mode. Then hit
q
to end recording, and :reg a
to check the contents of register "a." Is there a leading "p" inside that register?Or run vim in debug mode:
vim -D
.