chrisbra / Recover.vim

A Plugin to show a diff, whenever recovering a buffer
http://www.vim.org/scripts/script.php?script_id=3068
247 stars 25 forks source link

don't load user's vimrc when building vimball file #26

Closed sunaku closed 10 years ago

sunaku commented 10 years ago

This commit prevents the user's vimrc (which may be arbitrarily complex) from being loaded into Vim when Vim is called to build the vimball file.

chrisbra commented 10 years ago

I generally prefer -u NONE, but for now let's just merge it and I'll change it later.

sunaku commented 10 years ago

:+1: I was having trouble with -u NONE because it implies -noplugins which I think was interfering with the Vimball stuff, so I put in -u /dev/null as a workaround. Thanks for making -u NONE work.