On 5/5/06, David Venus <[EMAIL PROTECTED]> wrote:
1. How do I get VIM to automagically create the directory (if it does not
exist)
Add this to your vimrc:
:if !isdirectory('c:/temp/vim_backups.d')
:call system('mkdir c:\temp\vim_backups.d')
endif
2. How do I set VIM to not append a backup extension?
Regarding empty backupext.
I don't know whether I did something wrong or it must be non-empty,
but a small try showed that empty backupext didn't work.
3
Single directory in backupdir is definitely possible.
Yakov