Come usare vim-youcompleteme


12

Ho scaricato vim-youcompletemedal centro software di Ubuntu. Ma non so come farlo funzionare. Quando ho riavviato Vim e testato, non è successo nulla di speciale. Ed vim-syntasticè lo stesso Qualcuno potrebbe dirmi come farli funzionare? Dovrei fare qualcosa con il mio ~/.vimrc? Grazie in anticipo!

Risposte:


19

Dal README specifico del pacchetto ( /usr/share/doc/vim-youcompleteme/README.Debian):

vim-youcompleteme
-----------------

A code completion plugin for Vim. This package designed to work with
vim-addon-manager. To use this addon install vim-addon-manager package first
and use this command:

  $ vam install youcompleteme

vim-addon-managerè consigliato da quando vim-youcompleteme, quindi ci sono buone probabilità che sia già installato. Altrimenti:

sudo apt-get install vim-addon-manager

E quindi esegui il comando indicato nel README. vim-syntasticè disponibile solo per 14.10, dai risultati nell'indice del pacchetto , ma dato che dipende esplicitamente da ciò vim-addon-manager, direi che si applica anche qualcosa di simile.


4

Prova qualcosa del genere:

Mettilo nella parte superiore del tuo .vimrc per usare Vundle.

set nocompatible              " be iMproved, required
filetype off                  " required

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')

" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'


" All of your Plugins must be added before the following line
call vundle#end()            " required
filetype plugin indent on    " required

Eseguire quanto segue per installare:

git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
cd ~/.vim/bundle
git clone https://github.com/Valloric/YouCompleteMe.git
cd YouCompleteMe
git submodule update --init --recursive
./install.sh --clang-completer

4

Nel 18.04 è solo;

sudo apt install vim-youcompleteme
vim-addon-manager install youcompleteme

La versione di Ubuntu non supporta Java, quindi potresti volere l'ultima versione a seconda della lingua che preferisci, in modo alternato;

cd ~/.vim/bundle
git clone --depth=1 https://github.com/Valloric/YouCompleteMe.git
cd YouCompleteMe
git submodule update --init --recursive
./install.py --all
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.