Vimmer
Vimmer

Reputation: 71

Code completion plugin for c programming in Vim

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

Answers (3)

tarabyte
tarabyte

Reputation: 19172

I would strongly suggest the youcompleteme vim plugin.

https://github.com/ycm-core/YouCompleteMe#installation

Upvotes: 1

Benjamin Bannier
Benjamin Bannier

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

Sadique
Sadique

Reputation: 22813

Here is a long Article on the configuration, see if it helps you:

The autocompletion C/C + + in vim

Upvotes: 2

Related Questions