Hi,

On 5/5/06, Yakov Lerner <[EMAIL PROTECTED]> wrote:
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


Instead of invoking the external mkdir command, you can also
use the built-in mkdir() function:

    call mkdir('c:\temp\vim_backups.d')

- Yegappan

Reply via email to