Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Good IDE for Elixir [closed]

Tags:

ide

elixir

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
like image 877
Cristian Garcia Avatar asked Aug 24 '15 15:08

Cristian Garcia


1 Answers

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.

like image 64
Letseatlunch Avatar answered Oct 20 '22 01:10

Letseatlunch