1
0
mirror of https://github.com/gryf/snipmate.vim.git synced 2025-12-19 12:28:11 +01:00

added "fori" cpp snippet

This commit is contained in:
Michael Sanders
2009-07-13 11:27:10 -04:00
parent af264e857f
commit 1c10d6aa80

View File

@@ -24,7 +24,11 @@ snippet cl
public:
$1 (${2:arguments});
virtual ~$1 ();
private:
${3:/* data */}
};
snippet fori
for (int ${2:i} = 0; $2 < ${1:count}; $2${3:++}) {
${4:/* code */}
}