Closed ClaudiaJ closed 8 years ago
@ClaudiaJ I think expand()
does not convert backslash.
Have you set shellslash
option?
I think it is your configuration problem. I don't recommend to set path manually.
Whoops, you are right.
I mostly copied your dotfiles. I preferred shellslash
on, but commenting that out makes the problem go away.
Setting RTP with the following snippet:
echo expand('$VIMRUNTIME')
outputsC:/Program Files/Vim/vim74
echo $VIMRUNTIME
outputsC:\Program Files\Vim\vim74
The error is being triggered for this code:
Because
$VIMRUNTIME
doesn't actually match any value inrtps
, due to the difference between\
and/
, plugin fails, despite technically valid runtimepath.Temporary workaround is to add the following to vimrc before neobundle is called: