Ubuntu – Any editor that does autocompletion in Ubuntu

auto-completioneditorgeditpluginsvim

Is there any editor/IDE(or a plugin for an existing editor like Vim or GEdit) that does auto-completion of many languages (not just C++)? Aptana does only HTML/CSS/JS and Code::Blocks does only C++ (I might be wrong on this one. If so, please correct me).

In Windows, Notepad++ does a pretty neat job.

Best Answer

Vim has a couple different forms of completion built-in for many programming languages. Good places to start might be ":help 'complete'" and looking up omni-completion.

Related Question