maralla / completor.vim

Async completion framework made ease.
MIT License
1.31k stars 62 forks source link

use neosnippet many Completion list #149

Closed dohq closed 6 years ago

dohq commented 6 years ago

I am sorry for my poor English.

I use completor and neosnippet but one expand neosnippet many Completionlist

use this vimrc

let $DOTVIM = expand($VIM.'\vimfiles')

call plug#begin($DOTVIM.'/plugins')
Plug 'maralla/completor.vim'
  Plug 'maralla/completor-neosnippet'
Plug 'Shougo/neosnippet'
  Plug 'Shougo/neosnippet-snippets'
call plug#end()
filetype plugin indent on

" NeoSnipet {{{
"Plugin key-mappings.
imap <C-k>     <Plug>(neosnippet_expand_or_jump)
smap <C-k>     <Plug>(neosnippet_expand_or_jump)
xmap <C-k>     <Plug>(neosnippet_expand_target)
"}}}

gif neosnippet

Regards,

maralla commented 6 years ago

Thanks for reporting! I pushed a commit maralla/completor-neosnippet@6cd015ddf2d0421859edb66c6ae4f71c89db6b34 to fix the problem. Please update completor-neosnippet and try again.

dohq commented 6 years ago

Thanks fix this ! I update and fix confirm

Than kyou!