Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vim code completion

Is it possible to make Vim complete the code for you, like in any other IDE (not just word searching, but members of classes, methods etc.)?

What are the best options / plugins available?

like image 835
Bob Avatar asked Jan 28 '11 01:01

Bob


People also ask

Can you get Intellisense in Vim?

Intellisense. The auto-completion system (Intellisense) in VSCode is arguably its best feature. Lucky for us, it's been ported over to Vim!

How does code completion work?

Code Completion displays a resizable "hint" window that lists valid elements that you can select to add to your code. The hint window shows a list where the first symbols are the ones that start with the text you type, followed by the symbols that contain the rest of text.


1 Answers

Clang Complete lets you use Clang for accurate auto-completion of C and C++

like image 115
Cam Avatar answered Nov 15 '22 19:11

Cam