When I start vim with one of these plugins:
- TagBar
- Session
I see sometimes garbage characters in the buffer when I open vim.
Here are these characters:
;2R^[[>1;2802;0c
By uninstalling these two plugins, I don't see these garbage characters anymore.
If I type dd
, it does not even delete these characters. Vim says the buffer is empty.
Putting this command at the end of my .vimrc is a workaround for this problem:
autocmd VimEnter * redraw!
With this, these characters are deleted immediately.
How can I fix this problem?