File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -32,21 +32,21 @@ snippet def
32
32
abbr def .. do .. end
33
33
options head
34
34
def ${1: name } do
35
- ${2}
35
+ ${2: TARGET }
36
36
end
37
37
38
38
snippet defm
39
39
abbr def module
40
40
options head
41
41
defmodule ${1: module_name } do
42
- ${2}
42
+ ${2: TARGET }
43
43
end
44
44
45
45
snippet defp
46
46
abbr defp .. end
47
47
options head
48
48
defp ${1: name } do
49
- ${2}
49
+ ${2: TARGET }
50
50
end
51
51
52
52
snippet doc
@@ -75,14 +75,14 @@ snippet test
75
75
abbr test .. do .. end
76
76
options head
77
77
test "${1: test_name } " do
78
- ${2}
78
+ ${2: TARGET }
79
79
end
80
80
81
81
snippet try
82
82
abbr try .. rescue .. end
83
83
options head
84
84
try do
85
- ${1}
85
+ ${1: TARGET }
86
86
rescue
87
87
${2} -> ${3}
88
88
@@ -91,12 +91,12 @@ abbr with .. do .. end
91
91
options head
92
92
with ${1}
93
93
do
94
- ${2}
94
+ ${2: TARGET }
95
95
end
96
96
97
97
snippet describe
98
98
abbr describe .. do .. end
99
99
options head
100
100
describe "${1: describe_name } " do
101
- ${2}
101
+ ${2: TARGET }
102
102
end
You can’t perform that action at this time.
0 commit comments