Skip to content

Commit 0023135

Browse files
committed
Remove placeholder text in proto snippets.
1 parent 9a7a600 commit 0023135

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

UltiSnips/proto.snippets

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@ endsnippet
3232

3333
snippet reqf "Required field" b
3434
// ${4:TODO(`whoami`): Describe this field.}
35-
optional ${1:type}`!p snip.rv = complete(t[1], FIELD_TYPES)` ${2:name} = ${3:1}; // Required
35+
optional ${1}`!p snip.rv = complete(t[1], FIELD_TYPES)` ${2:name} = ${3:1}; // Required
3636
endsnippet
3737

3838
snippet optf "Optional field" b
3939
// ${4:TODO(`whoami`): Describe this field.}
40-
optional ${1:type}`!p snip.rv = complete(t[1], FIELD_TYPES)` ${2:name} = ${3:1};
40+
optional ${1}`!p snip.rv = complete(t[1], FIELD_TYPES)` ${2:name} = ${3:1};
4141
endsnippet
4242

4343
snippet repf "Repeated field" b
4444
// ${4:TODO(`whoami`): Describe this field.}
45-
repeated ${1:type}`!p snip.rv = complete(t[1], FIELD_TYPES)` ${2:name} = ${3:1};
45+
repeated ${1}`!p snip.rv = complete(t[1], FIELD_TYPES)` ${2:name} = ${3:1};
4646
endsnippet
4747

4848
snippet enum "Enumeration" b

0 commit comments

Comments
 (0)