Не могу заставить эти дополнения (vundle или neobundle) работать на моей машине с Windows 7. Каждый раз, когда я пытаюсь установить плагины, я получаю следующие сообщения об ошибках:
Error detected while processing function neobundle#commands#check...neobundle#commands#install..
<SNR>21_install...neobundle#installer#sync..neobundle#util#system:
line 7: E484: Can't open file C:\Documents and Settings\user\Local Settings\Temp\VIo3342.tmp
Error detected while processing function neobundle#commands#check:
line 18: E171: Missing :endif
Когда я запускаю :sh
из GVim, cmd.exe
открывается там, где правильно работают git или curl .
Мой файл _vimrc :
set nocompatible
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin
set diffexpr=MyDiff()
function MyDiff()
let opt = '-a --binary '
if &diffopt =~ 'icase' | let opt = opt . '-i ' | endif
if &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endif
let arg1 = v:fname_in
if arg1 =~ ' ' | let arg1 = '"' . arg1 . '"' | endif
let arg2 = v:fname_new
if arg2 =~ ' ' | let arg2 = '"' . arg2 . '"' | endif
let arg3 = v:fname_out
if arg3 =~ ' ' | let arg3 = '"' . arg3 . '"' | endif
let eq = ''
if $VIMRUNTIME =~ ' '
if &sh =~ '\<cmd'
let cmd = '""' . $VIMRUNTIME . '\diff"'
let eq = '"'
else
let cmd = substitute($VIMRUNTIME, ' ', '" ', '') . '\diff"'
endif
else
let cmd = $VIMRUNTIME . '\diff'
endif
silent execute '!' . cmd . ' ' . opt . arg1 . ' ' . arg2 . ' > ' . arg3 . eq
endfunction
" My Settings
if has('vim_starting')
set nocompatible " Be iMproved
" Required:
set runtimepath+=~/vimfiles/bundle/neobundle.vim/
endif
" Required:
call neobundle#begin(expand('~/vimfiles/bundle/'))
" Let NeoBundle manage NeoBundle
" Required:
NeoBundleFetch 'Shougo/neobundle.vim'
" My Bundles here:
NeoBundle 'Shougo/neosnippet.vim'
NeoBundle 'Shougo/neosnippet-snippets'
NeoBundle 'tpope/vim-fugitive'
NeoBundle 'kien/ctrlp.vim'
NeoBundle 'flazz/vim-colorschemes'
" You can specify revision/branch/tag.
" NeoBundle 'Shougo/vimshell', { 'rev' : '3787e5' }
call neobundle#end()
" Required:
filetype plugin indent on
" If there are uninstalled bundles found on startup,
" this will conveniently prompt you to install them.
NeoBundleCheck
У меня такое ощущение, что проблема здесь в том, что GVim пытается получить доступ к Documents and Settings
(с пробелами) вместо просто C:\Users\user
...
Обновление 1
Должно быть что-то, что связано с моими переменными среды или с тем, как GVim запущен. Попытка использовать тот же конфиг и сборку GVim на новой виртуальной машине Windows, и там не было никаких проблем ...
Есть ли какие-либо параметры конфигурации, которые я должен искать / проверять на моем компьютере?