elixir-editors / language-elixir

Elixir language support for the Atom editor.
Other
181 stars 40 forks source link

Add IEx pry snippet #91

Closed jayjun closed 7 years ago

jayjun commented 7 years ago

This PR adds IEx.pry/1 as a snippet. It complements IO.inspectand IO.puts snippets for debugging.

require IEx
IEx.pry()

This is mainly a convenience to rapidly insert both lines. If users don't need require IEx, they can autocomplete IEx.pry directly.