Skip to content

Instantly share code, notes, and snippets.

@merqlove
Last active August 13, 2016 15:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save merqlove/9787f2116283d276ef14a7c1ad1df37d to your computer and use it in GitHub Desktop.
Save merqlove/9787f2116283d276ef14a7c1ad1df37d to your computer and use it in GitHub Desktop.
IntelliJ Elixir debug aliasing with base features.
module Best.SomeA do
def some_func, do: IO.puts("Hello World!"
end
module SomeB do
alias Best.SomeA
def some_func, do: SomeA.some_func # CMD+B on SomeA
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment