I use Vim for many years now but I still don't know how to type text with autopopup dictionary suggestions enabled (like in notepad++ or google android keyboard) without pushing any shortcut key.
These are my options in vimrc:
set completeopt=longest,menuone
set omnifunc=syntaxcomplete#Complete
In short what I want is:
1) Only dictionary suggestion in autopopup while typing.
2) Only buffer words suggestion in supertab (using tab key)
(but..without the buffer names included)
How can I obtain this?
/usr/share/dict/american-english
or just set your own file:and as the shortcut for dictionary completion in insert mode is CTRL-X CTRL-K you need to add these settings:
SuperTabSetDefaultCompletionType
function (which is actually the default one):But you still need to press CTRL-X before TAB.
Edit:
This is related to comments below this answer: It is a tiny script
PopUpDict.vim
(it can be improved) that I coded which pop up automatically the matched words in dictionary after typing 3 characters and which give you the ability to pop up the matched buffer keywords after typingctrl-x
tab
: (newer version of vim >= 7.4)Demo