Registers in vim are a great feature to store text snippets and even to run commands on the text stored within them. However, I\'m a tidy person and tend to clean things up when
Put this in your .vimrc:
.vimrc
command! WipeReg for i in range(34,122) | silent! call setreg(nr2char(i), []) | endfor
and clear every register with :WipeReg
:WipeReg
If you would like that to happen every time you start Vim also add:
autocmd VimEnter * WipeReg