We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 250fd91 commit 9a7f396Copy full SHA for 9a7f396
snippets/elixir.snippets
@@ -3,9 +3,9 @@ snippet do
3
${0:${VISUAL}}
4
end
5
snippet put IO.puts
6
- IO.puts "${0}"
+ IO.puts("${0}")
7
snippet ins IO.inspect
8
- IO.inspect ${0}
+ IO.inspect(${0})
9
snippet insl IO.inspect with label
10
IO.inspect(${0}label: "${1:label}")
11
snippet if if .. do .. end
@@ -247,7 +247,7 @@ snippet >f pipe to filter
247
snippet >r pipe to reduce
248
|> Enum.reduce(${1:acc}, fn ${2}, ${3:acc} -> ${0} end)
249
snippet >i pipe to inspect
250
- |> IO.inspect
+ |> IO.inspect()
251
snippet >il pipe to inspect with label
252
|> IO.inspect(label: "${1:label}")
253
snippet cs
0 commit comments