re-design snippets hierarchy

This commit is contained in:
Zhang Chiyuan
2008-03-10 12:19:19 +00:00
parent 9fdef6f4b2
commit 07e1cdb981
15 changed files with 0 additions and 37 deletions

6
snippets/cc-mode/for Normal file
View File

@@ -0,0 +1,6 @@
#name : for (...; ...; ...) { ... }
# --
for (${1:int i = 0}; ${2:i < N}; ${3:++i})
{
$0
}