You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
this is similar to #399 ,but the fixes there seem to work only for an older version.
My minimal _vimrc
set nocompatible " disable vi compatibility (emulation of old bugs)
"make sure that we can write in temp folder on Windows
"set directory=.,$TEMP
filetype off "vundle needs this; will be turned on later
set runtimepath+=$HOME/vimfiles/bundle/Vundle.vim
let path='~/vimfiles/bundle'
call vundle#begin(path)
Plugin 'gmarik/Vundle.vim' " must be installed manually via git clone on first run!
Plugin 'sjl/gundo.vim'
call vundle#end() " required
"syntax highlightign and filetype detection
syntax on " syntax highlighing
" filetype on " try to detect filetypes
filetype plugin indent on " enable loading indent file for filetype
The fix for the temp folder is disabled, but I'm calling a file from a writable directory (if not: different swap file related errors, but ok). Errors after :PluginInstall are:
I followed the discussion around #294 and #175 . There, people had similar errors and solved them by setting their shell to bash in vim. I am not sure how this applies to my situation on Win7 however.
I also tried the _vimrc suggested in #399 . It didn't work either because I couldn't adjust it to my _vimrc + $Home/vimfiles/bundle setup and vundle#rc seems not to be there anymore.
Now I'm stuck. Can you suggest what I should look into next? Is there maybe an issue with capital letters or punctuation in folder names on Windows (github repo name seems to have changed from vundle to Vundle.vim judging from older issues)?