YouCompleteMeが関数パラメーターを完成しないのはなぜですか?


10

YouCompleteMeをC ++のセマンティック補完で使用したいのですが、何時間も試しても期待どおりに機能しない理由がわかりません。

すべてが機能しているようですが、関数パラメーターを完成できません。

Archlinux(OpenboxのGnomeターミナル)でVimを実行しています:

Linux Arch-PC 4.2.5-1-ARCH #1 SMP PREEMPT Tue Oct 27 08:13:28 CET 2015 x86_64 GNU/Linux

指示に従ってYCMをインストールしました(install.pyスクリプトとclangサポート付き)。AUR YCMパッケージでも試してみましたが、同じ問題が発生しました。

YcmDebugInfo

Printing YouCompleteMe debug information...
-- Server has Clang support compiled in: True
-- Clang version: clang version 3.7.0 (tags/RELEASE_370/final)
-- Flags for /home/arthur/vimtest/main.cpp loaded from /home/arthur/vimtest/.ycm
_extra_conf.py:
-- ['-x', 'c++', '-Wall', '-isystem', '/home/arthur/.vim/bundle/YouCompleteMe/th
ird_party/ycmd/ycmd/../clang_includes']
-- Server running at: http://127.0.0.1:54555
-- Server process ID: 11520
-- Server logfiles:
--   /tmp/ycm_temp/server_54555_stdout.log
--   /tmp/ycm_temp/server_54555_stderr.log

完了しようとすると、画面に次のように表示されます。 YCMの問題

にはYCM-Generatorを使用しました.ycm_extra_conf.py

Vimの知識が足りないために、何かバカなことをしているのでしょうか?キーボードショートカットのマッピングがおかしいようですが、何が問題なのかを正確に把握できません。これは私の.vimrcです:

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()

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

    Plugin 'scrooloose/nerdtree'
    Plugin 'mbbill/undotree'
    Plugin 'majutsushi/tagbar'
    Plugin 'bling/vim-airline'
    Plugin 'tpope/vim-fugitive'
    Plugin 'vim-scripts/c.vim'
    Plugin 'Valloric/YouCompleteMe'
    Plugin 'sjl/badwolf'        
    Plugin 'rdnetto/YCM-Generator'

call vundle#end()            " required
filetype plugin on    " required

"Settings
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab
set smartindent
set autoindent
set backspace=indent,eol,start
set background=dark 
set shiftround
set ignorecase
set showmode
set ruler
set showcmd
set mouse=a
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif

"Plugins Settings :
    "badwolf
        colorscheme badwolf
    "YCM :
        let g:ycm_collect_identifiers_from_tags_files = 1
    "airline :
        set laststatus=2
        let g:airline_powerline_fonts = 1




"Shortcuts
    nnoremap <F3>  :UndotreeToggle<cr> 
    nnoremap <F4>  :TagbarToggle<cr> 
    nnoremap <F2>  :NERDTreeToggle<cr> 


syn on
set nu

ご協力いただきありがとうございます!

回答:


8

ついに見つけた!パラメータの入力は、YCMの動作の一部ではありません。このYCMの問題をご覧ください。

この機能を許可する可能性のあるoblitumの古いフォークがあります。それが私を惑わしたものです。

残念ながら、フォークのこの部分はメンテナンスされていないようで、数回試行した後、機能させることができませんでした。

そこで、clang_completer探していたパラメータ補完機能のあるものを試してみました。


1
それは思いclang_completergithub.com/Rip-Rip/clang_complete、または別のプラグイン?
muru

はい、それはこのプラグインです。
ヒップパンク2016年

YCMをでコンパイルした場合--clang-completer、それは機能しますか?私は仕事でいつもパラメーター補完を使用していると思います。現在確認できません...
eckes

私のフォークは更新され、リファクタリングされました。アップストリームマスターと同等です。維持されていないのはそのブランチです。具体的には、私はそのソリューションを放棄して、フォークのマスターにあるものを優先しています。
pepper_chico 2016年
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.