Every so often (about once a month), my vim starts eating resources like crazy, and I'm unable to kill it. Here's an example:
I ran:
kill 13799
To no effect. I would like to know:
1) Could be vim going haywire due to something else? I use it to write code in and it's usually when the code is running that I get an issue. 2) If not, why would vim do this? 3) How can I kill it? Currently, I have to reboot every time.
Thanks )
kill -9 $(pidof vim)
– kenn Jan 09 '19 at 13:37autoread
enabled? Do you have lots of plugins installed? etc. – Dan Jan 09 '19 at 13:41vim cache
in~/.viminfo
fix it: https://stackoverflow.com/questions/2816719/clear-certain-criteria-from-viminfo-file – kenn Jan 09 '19 at 13:55