With native Vim, pasting on a visual selection/word/etc., then the entity being pasted over gets placed in the default register.
Thus, for example, given:
apple
grape
cucumber
by default, yanking "apple", then selecting "grape" and pasting will result in "grape" being placed in the default register; the next paste operation will put "grape".
Is there a way to preserve this with YankStack? Right now, with the above example, "apple" remains in the default register, and subsequent pastes put "apple". I would like for "grape" to be put by default (pushing "apple" one step down in the stack).