Não é possível obter o vundle ou neobundle para funcionar no GVim no Windows 7 de 64 bits


0

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 :shde dentro do GVim, cmd.exeabre 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?


O diretório existe e é acessível a partir do Vim (que é de 32 ou 64 bits) ?!
Ingo Karkat 09/04

@IngoKarkat: Sim, o diretório existe na minha máquina e resolve para c: \ Users \ user \ AppData \ Local \ Temp \. Estou usando a versão 32 bits do Vim. Como posso verificar se esse diretório está acessível no GVim / Vim?
Timka

Que tal :edit C:\Documents and Settings\user\Local Settings\Temp\test.txt?!
Ingo Karkat

@IngoKarkat: Hum, interessante. Consegui abrir o arquivo neste diretório (também havia o arquivo test.txt.swp lá também), mas não consigo salvar minhas alterações nesse arquivo. Obtendo "E212: Não é possível abrir arquivo para escrever" quando eu clicar no botão SALVAR
Timka

Respostas:


0

Corrigido o problema.

O problema foi com as variáveis ​​de ambiente do usuário que eu precisei redefinir para:

%HOME% = %USERPROFILE%
%TEMP% = %USERPROFILE%\AppData\Local\Temp
%TMP% = %USERPROFILE%\AppData\Local\Temp
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.