Não é possível fazer com que esses complementos ( vundle ou neobundle ) funcionem na minha máquina com Windows 7. Sempre que tento instalar plugins, recebo as seguintes mensagens de erro:
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
Quando eu corro :sh
de dentro do GVim, cmd.exe
abre onde git ou curl funcionam corretamente.
Meu arquivo _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
Sinto que a questão aqui é que o GVim tenta acessar Documents and Settings
(com espaços) em vez de apenas C:\Users\user
...
Atualização 1
Deve ser algo relacionado às minhas variáveis ambientais ou à maneira como o GVim foi lançado. Tentei usar a mesma configuração e compilação do GVim em uma nova VM do Windows e não teve nenhum problema lá ...
Existem definições de configuração que devo procurar / verificar no meu computador?
:edit C:\Documents and Settings\user\Local Settings\Temp\test.txt
?!Respostas:
Corrigido o problema.
O problema foi com as variáveis de ambiente do usuário que eu precisei redefinir para:
fonte