Reputation: 71
I'm looking for a good code completion plugin for C programming in Vim. I already found some myself:
http://www.vim.org/scripts/script.php?script_id=1764 Even though this does have some very nice features, it only has a short gif file as documentation which makes it fairly useless to me. A shame really, I think it does almost what I want.
Ideally I want a plugin that knows the full C standard library, and has the features of the above plugin.
Any ideas?
Upvotes: 7
Views: 32982
Reputation: 19172
I would strongly suggest the youcompleteme vim plugin.
https://github.com/ycm-core/YouCompleteMe#installation
Upvotes: 1
Reputation: 58547
I would always suggest using clang complete
like I did here. The other answers there might be useful for you as well.
Upvotes: 5
Reputation: 22813
Here is a long Article on the configuration, see if it helps you:
The autocompletion C/C + + in vim
Upvotes: 2