Shougo / neocomplcache.vim

Ultimate auto-completion system for Vim.
http://www.vim.org/scripts/script.php?script_id=2620
1.72k stars 135 forks source link

ver.8.1 で先頭の文字にマッチした候補のみを出力したい #413

Closed osyo-manga closed 11 years ago

osyo-manga commented 11 years ago

ver.8.1 での質問なのですが、先頭の文字にマッチした候補のみを出力したいのですがどのように設定すればよいのでしょうか。

hoge

lookforit commented 11 years ago

ver.8.1 での質問なのですが,>先頭の文字にマッチした候補のみを出力したいのですがどのように設定すればよいのでしょうか

+1

Shougo commented 11 years ago

let g:neocomplcache_enable_fuzzy_completion = 0

or

call neocomplcache#custom_source('_', 'matchers', \ ['matcher_head'])

I will add it in FAQ section.

osyo-manga commented 11 years ago

次のような設定で試してみましたがうまく動作しませんでした。

scriptencoding utf-8

set nocompatible
filetype off

set rtp+=$VIM/dotfiles/neobundle.vim/

if has('vim_starting')
    call neobundle#rc(expand($VIM."/.vim/neobundle"))
endif

" NeoBundle "Shougo/neocomplcache"
NeoBundle "Shougo/neocomplcache", {
\   "rev" : "ver.8.1"
\}

filetype plugin indent on

" 有効にする
let g:neocomplcache_enable_at_startup=1

let g:neocomplcache_enable_fuzzy_completion = 0

call neocomplcache#custom_source('_', 'matchers', ['matcher_head'])
Shougo commented 11 years ago

I fixed it.

osyo-manga commented 11 years ago

こちらでも動作することを確認しました。 ありがとうございます。