We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6acb09f commit 3b02f16Copy full SHA for 3b02f16
bundle/snipmate/snippets/cpp.snippets
@@ -32,3 +32,7 @@ snippet fori
32
for (int ${2:i} = 0; $2 < ${1:count}; $2${3:++}) {
33
${4:/* code */}
34
}
35
+snippet forui
36
+ for (unsigned int ${2:i} = 0; $2 < ${1:count}; $2${3:++}) {
37
+ ${4:/* code */}
38
+ }
0 commit comments