Good IDE for Elixir

Cristian Garcia picture Cristian Garcia · Aug 24, 2015 · Viewed 42.6k times · Source

I am looking for an IDE that does atleast some of the following

  • Code completion when typing variable names and possible functions after pressing .
  • Show a functions signature and docs
  • Navigate to the function/variable/module's definition

It would be nice if it could also

  • Warn about errors
  • Code generation
  • Scaffold basic projects

Answer

Letseatlunch picture Letseatlunch · Aug 24, 2015

There is a great Elixir extension support for Visual Studio Code and there are currently 2 extensions to add the language to the tool, my preference being vscode-elixir. You can add it by hitting ctrl+P then typing "ext install vscode-elixir".

This extension adds rich elixir language support to VS Code including:

  • Syntax Coloring
  • Snippets
  • Intellisense

enter image description here

There is also a sublime integration called ElixirSublime. It has most of the same features. However, it hasn't been updated in many years.