I'm on Windows 10 with Vim 74. Followed the instructions here
https://github.com/VundleVim/Vundle.vim/wiki/Vundle-for-Windows
in particular these lines
set rtp+=%HOME%/vimfiles/bundle/Vundle.vim/
call vundle#begin('%USERPROFILE%/vimfiles/bundle/')
But when I ran :PluginInstall I got

So just for fun I changed the above 2 lines to the following
set rtp+=~/vimfiles/bundle/Vundle.vim/
call vundle#begin('~/vimfiles/bundle/')
and I got the intended results. My plugins install to /vimfiles/bundle. Curiouser still, doing
call vundle#begin()
Also works, but here the plugins go to a .vim directory in home. Which I suppose should also be fine but from what I can tell the expectation is "vimfiles" and "_vimrc" in windows land. But I have a bunch of "." directories in home from other stuff. So, hmm.
Not sure how to explain all except that Vundle is smart enough to parse a tilde into something like %home%. Maybe if this is true the docs should be updated, which I'm happy to do if others think this is a real issue and not something weird with me.
For what it's worth I'm not doing cygwin, just a standard install of windows.
I'm on Windows 10 with Vim 74. Followed the instructions here
https://github.com/VundleVim/Vundle.vim/wiki/Vundle-for-Windows
in particular these lines
But when I ran :PluginInstall I got

So just for fun I changed the above 2 lines to the following
and I got the intended results. My plugins install to /vimfiles/bundle. Curiouser still, doing
call vundle#begin()Also works, but here the plugins go to a .vim directory in home. Which I suppose should also be fine but from what I can tell the expectation is "vimfiles" and "_vimrc" in windows land. But I have a bunch of "." directories in home from other stuff. So, hmm.
Not sure how to explain all except that Vundle is smart enough to parse a tilde into something like %home%. Maybe if this is true the docs should be updated, which I'm happy to do if others think this is a real issue and not something weird with me.
For what it's worth I'm not doing cygwin, just a standard install of windows.