An Elixir Snippet for VSCode

February 14, 2019

Enjoy:

UPDATE: Apparently there’s a nice Elixir snippet ext for VSCode here which includes the snippet below.

{
  "IO.puts": {
		"scope": "elixir",
		"prefix": "ip",
		"body": ["IO.puts $1"],
		"description": "output to console"
	}
}