Sublime Text 2 IntelliSense – How to

sublime-text-2

I would like to plug IntelliSense-like functionality into Sublime Text 2. Is there a package that does this?

Best Answer

There's no 1:1 clone of IntelliSense. But maybe SublimeCodeIntel suits your needs?

Provides the following features:

  • Jump to Symbol Definition - Jump to the file and line of the definition of a symbol.
  • Imports autocomplete - Shows autocomplete with the available modules/symbols in real time.
  • Function Call tooltips - Displays information in the status bar about the working function.

It can be easily installed via Package Control. Don't forget to restart Sublime after the installation. See the GitHub page for a README.

Related Question