vim-clevertab
vim-clevertab copied to clipboard
Doesn't cycle through popup completion menu when started by neocomplete
My example VIMRC
set nocompatible
set runtimepath+=~/.vim/plugins/repos/github.com/Shougo/dein.vim
" Required:
call dein#begin('~/.vim/plugins')
" Let dein manage dein
call dein#add('Shougo/dein.vim')
call dein#add('Shougo/neocomplete.vim')
call dein#add('SirVer/ultisnips')
call dein#add('honza/vim-snippets')
call dein#add('neitanod/vim-clevertab')
call dein#end()
filetype plugin indent on
syntax enable
if dein#check_install()
call dein#install()
endif
let g:neocomplete#enable_at_startup = 1
call CleverTab#NeoCompleteFirst()
Steps to reproduce the behavior
- Start Vim using the VIMRC above and edit a file; best to just use the VIMRC as the file
- Invoke
:call CleverTab#NeoCompleteFirst()
(See discussion in #1.) - Induce neocomplete to bring up the popup menu by typing 3 characters; for example
neo
- Try to use
<Tab>
to select the completion - Observe that no action takes place