On 11/10/06, Eric Leenman <[EMAIL PROTECTED]> wrote: > How do I recall my home drive? > When I now tell g:backup_directory="\\temp\\vim_backup" > it creates the drive on U: and I would expect C:
You can also use Window's $SystemDrive env. variable. Either
let g:backup_directory=expand("$SystemDrive")."\\temp\\vim_backup"
or
let g:backup_directory="$SystemDrive\\temp\\vim_backup"
, depending on how g:backup_directory is used.
Yakov
