diff options
| author | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-08-28 12:24:01 +0100 |
|---|---|---|
| committer | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-08-28 12:24:01 +0100 |
| commit | 823302458ec6c53455a3f34674415c43ce6a3187 (patch) | |
| tree | 92168b44b01f5b2236b7cdf331e227c4790431ee /snippets/eelixir.snippets | |
| parent | 9ea6111717518625cbd28a020493ec06610ff01e (diff) | |
Added snippets directory
Diffstat (limited to 'snippets/eelixir.snippets')
| -rw-r--r-- | snippets/eelixir.snippets | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/snippets/eelixir.snippets b/snippets/eelixir.snippets new file mode 100644 index 0000000..c15d86e --- /dev/null +++ b/snippets/eelixir.snippets @@ -0,0 +1,71 @@ +extends html + +snippet % <% %> + <% ${0} %> +snippet = <%= %> + <%= ${0} %> +snippet # <%# %> + <%# ${0} %> +snippet end + <% end %> +snippet for + <%= for ${1:item} <- ${2:items} ${3:@conn} do %> + ${0} + <% end %> +snippet if + <%= if ${1} do %> + ${0:${VISUAL}} + <% end %> +snippet ife + <%= if ${1} do %> + ${2:${VISUAL}} + <% else %> + ${0} + <% end %> +snippet cond + <%= cond do %> + <% ${1} -> %> + ${2:${VISUAL}} + + <% true -> %> + ${0} + <% end %> +snippet unless + <%= unless ${1} do %> + ${0:${VISUAL}} + <% end %> +snippet ft form_tag + <%= form_tag(${1:"/users"}, method: ${2::post}) %> + ${0} + </form> + +snippet sl select + <%= select ${1:f}, :${2:field}, ${3:[{"key", "value"}]}, prompt: ${4:"Prompt"} %> + +snippet sb submit + <%= submit ${1:"Submit"} %> + +snippet rb radio_button + <%= radio_button ${1:f}, :${2:field}, ${3:"value"} %> + + +snippet et error_tag + <%= error_tag ${1:f}, :${2:field} %> +snippet ti text_input + <%= text_input ${1:f}, :${2:field} %> +snippet la label + <%= label ${1:f}, :${2:field}, "${3:Label}" %> +snippet pi password_input + <%= password_input ${1:f}, :${2:password} %> +snippet render + <%= render "${1:index}.html", ${2:var: @var} %> +snippet lin link + <%= link "${1:Submit}", to: ${2:"/users"}, method: ${3::delete} %> +snippet ff form_for + <%= form_for @changeset, ${1:"/users"}, fn f -> %> + ${0} + + <%= submit "Submit" %> + <% end %> +snippet pry + <% require IEx; IEx.pry %> |
