1
0
mirror of https://github.com/amix/vimrc synced 2025-06-16 01:25:00 +08:00

Forgot to check in the rest of the updated plugins :/

This commit is contained in:
Amir
2022-09-20 10:08:31 +02:00
parent c6ba5aa440
commit 3978f7b467
77 changed files with 630 additions and 371 deletions

View File

@ -17,7 +17,7 @@ snippet dt
erlang:display({${1}, ${0}}),
# define directive
snippet def
-define(${1:macro}, ${2:body}).
-define(${1:macro}, $2).
# export directive
snippet exp
-export([${1:function}/${0:arity}]).
@ -44,17 +44,17 @@ snippet undef
snippet if
if
${1:guard} ->
${0:body}
$0
end
# case expression
snippet case
case ${1:expression} of
${2:pattern} ->
${0:body};
$0;
end
# anonymous function
snippet fun
fun (${1:Parameters}) -> ${2:body} end
fun (${1:Parameters}) -> $2 end
# try...catch
snippet try
try
@ -65,10 +65,10 @@ snippet try
snippet rcv "Receive Expression"
receive
${1: ${2:pattern}${3: when ${4:guard}} ->
${5:body}}
$5
${6:after
${7:expression} ->
${8:body}}
$8
end
# record directive
snippet rec