Skip to content

Commit 3b02f16

Browse files
author
Gerrit van Doorn
committed
Added a for spippet with a unsigned int
1 parent 6acb09f commit 3b02f16

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

bundle/snipmate/snippets/cpp.snippets

+4
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,7 @@ snippet fori
3232
for (int ${2:i} = 0; $2 < ${1:count}; $2${3:++}) {
3333
${4:/* code */}
3434
}
35+
snippet forui
36+
for (unsigned int ${2:i} = 0; $2 < ${1:count}; $2${3:++}) {
37+
${4:/* code */}
38+
}

0 commit comments

Comments
 (0)