VIM, Vundle, você me completa

0

Estou tentando usar você me completa no vim. Aqui estão os passos que tomei

sudo apt-get install vim    
sudo apt-get install git    
sudo apt-get install clang-3.5    
sudo git clone "https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim

Eu adicionei isso em / etc / vimrc e ~ / .vimrc

set nocompatible  
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'Valloric/YouCompleteMe' 
call vundle#end() 

filetype plugin indent on

emitiu este comando shell

vim +PluginInstall +qall

Não obteve nenhum erro durante todas as etapas acima, mas quando faço isso

vim test.cpp

entre no modo de inserção e comece a digitar

\#include

Eu não recebo nenhuma conclusão de código. O que estou perdendo?

    
por John G 25.01.2017 / 23:14

1 resposta

2

Você executou git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim com sudo . Isso coloca o Vundle em /root/ . Você precisa seguir as instruções para o Vundle e emitir o comando corretamente:

git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
    
por earthmeLon 26.01.2017 / 03:26