/sdk-problem-intellij-elixir

Repo for easier debugging of a not loading SDK in intellij-elixir plugin

Primary LanguageElixir

Not loading Elixir/Erlang SDK in Intellij-elixir

  • very basic elixir project created with mix new example
  • added one dependency {:pubsub, "~> 1.0"}
  • .idea folder included

Installation

mix deps.get

Example of a problem

In Example module lib/example.ex I wrote when I am getting expected autocomplete or not.

defmodule Example do
  def hello do
    Example # by typing local module I get expected autocomplete
    PubSub  # by typing dependency module I get expected autocomplete
    Enum    # by typing Elixir SDK module I don't got expected autocomplete
    :ets.new(:table) # I don't get to source file by CMD+click / "go to Declaration or Usage" on `new`

    :world
  end
end