Created
June 22, 2021 19:04
-
-
Save ashton314/f0a90a46e39b103635f2be8d8e6aeefd to your computer and use it in GitHub Desktop.
Yasnippets for use with Elixir. Yasnippet repo: https://github.com/joaotavora/yasnippet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: snippet -*- | |
# name: pipe inspect | |
# key: pi | |
# -- | |
|> IO.inspect(label: "$1") | |
$0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: snippet -*- | |
# name: io_inspect | |
# key: i | |
# -- | |
IO.inspect($1, label: "$1") | |
$0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment