File tree 1 file changed +2
-22
lines changed
1 file changed +2
-22
lines changed Original file line number Diff line number Diff line change @@ -23,10 +23,7 @@ snippet l "let binding"
23
23
let ${1} = ${0}
24
24
25
25
snippet as " assert binding"
26
- assert ${1} = ${0}
27
-
28
- snippet tr " try binding"
29
- try ${1} = ${0}
26
+ let assert ${1} = ${0}
30
27
31
28
snippet - " ->"
32
29
-> ${0}
@@ -54,20 +51,6 @@ snippet ptya "pub type alias"
54
51
pub type ${1: Name } =
55
52
${0: $1 }
56
53
57
- snippet ext " external type"
58
- external type ${0}
59
-
60
- snippet pext " pub external type"
61
- pub external type ${0}
62
-
63
- snippet exfn " external fn"
64
- external fn ${1: function_name } (${2} ) -> ${3}
65
- = "${4} " "${0} "
66
-
67
- snippet pexfn " pub external fn"
68
- pub external fn ${1: function_name } (${2} ) -> ${3}
69
- = "${4} " "${0} "
70
-
71
54
snippet im " import"
72
55
import ${0: gleam/result }
73
56
@@ -77,9 +60,6 @@ snippet im. "import exposing"
77
60
snippet p " |>"
78
61
|> ${0}
79
62
80
- snippet tup " tuple()"
81
- tuple(${0: ${VISUAL} } )
82
-
83
63
snippet bl " block"
84
64
{
85
65
${0: ${VISUAL} }
@@ -95,4 +75,4 @@ snippet strue "should.be_true"
95
75
should.be_true(${0: ${VISUAL} } )
96
76
97
77
snippet sfalse " should.be_false"
98
- should.be_true (${0: ${VISUAL} } )
78
+ should.be_false (${0: ${VISUAL} } )
You can’t perform that action at this time.
0 commit comments