I want to add word autocompletion feature to my vi editor.
I have changed my .vimrc file as
Code:
:set nu
:set cindent
:set shiftwidth=4
:set tabstop=4
:set softtabstop=4
:set comments=sl:/*,mb:*,els:*/
:set dictionary=.dict
And my .dict file contains C++ keyword(near about 90 words).
But why it's not working ??