0

I tried to install clang_complete for vim. I have downloaded source and when I try to make it, it gives me this:

E492: Not an editor command %MkVimball! clang_complete.vmb

any idea?

Mehraban
  • 3,164
  • 4
  • 37
  • 60

1 Answers1

1

It looks like the Vimball plugin (which defines the :MkVimball command) isn't active or installed. That's strange; it ships with Vim. Please investigate what's wrong with your setup (:set rtp? and :scriptnames will help), or re-install the plugin, e.g. from vim.org.

Or just install the clang_complete from a different format, e.g. the downloadable ZIPs from the vim-scripts.org mirror.

Ingo Karkat
  • 167,457
  • 16
  • 250
  • 324
  • The problem was that MKvimball script was missing. I made a sample .vimrc cause I had not anyone thanks to [Alex](http://stackoverflow.com/a/15840298/1805756) and then downloaded mkvimball.vba, opened it using vim and ran :so %. – Mehraban Jul 27 '13 at 15:17