-3

As soon as I enable neocomplete in my .vimrc

let g:neocomplcache_enable_at_startup = 1      

I keep getting

NORMAL › +1 ~2 -281 › 1:.vimrc
1:.vimrc
1:.vimrc
Press ENTER or type command to continue

Message every time I open a file. How can I get rid of that "Press Enter" message after enabling neocomplete?

Anshul Goyal
  • 73,278
  • 37
  • 149
  • 186
CodeCrack
  • 5,253
  • 11
  • 44
  • 72

1 Answers1

1

I think you are confusing this setting with the previous fuzzy search program called neocomplcache. Try this setting if you are using neocomplete and not neocomplcance:

let g:neocomplete#enable_at_startup = 1

Regards

mnemonicj
  • 58
  • 6