maxbrunsfeld / vim-yankstack

A lightweight implementation of emacs's kill-ring for vim
437 stars 29 forks source link

Doesn't work with i_CTRL-O #44

Open mmikeww opened 10 years ago

mmikeww commented 10 years ago

When in insert mode, if you press CTRL+o then vim allows you to execute one normal mode command. Pressing p causes yankstack to append the text of an echo command.

Buffer:

hello world

In normal mode, press ^ , yw , o , <C-o>, p

Result buffer:

hello world hello :echo ""

Expected:

hello world hello

maxbrunsfeld commented 10 years ago

Thanks for catching this. I'd definitely merge a pull request fixing it.

nedbat commented 8 years ago

This seems to have been fixed somewhere? It doesn't happen any more I don't think.