maxbrunsfeld / vim-yankstack

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

Yankstack conflicts with auto save autocmd #61

Open 0xC0FFEE opened 6 years ago

0xC0FFEE commented 6 years ago

I'm observing a conflict between my auto save autocmd and yankstack. Instead of cycling though the yank stack the same text is pasted again.

Here is the autocmd in question:

augroup auto_save
  autocmd!
  autocmd CursorHold,InsertLeave * silent! wall
augroup END

Is there a known workaround or the possibility to avoid the conflict?

Btw: thank you for this wonderful plugin <3

mottalrd commented 5 years ago

I have the same issue, I use https://vimawesome.com/plugin/vim-auto-save Thank you in advance for any recommendations!