re-design snippets hierarchy

This commit is contained in:
Zhang Chiyuan
2008-03-10 12:26:15 +00:00
parent b376b1f00b
commit 61210bf5fd
78 changed files with 94 additions and 36 deletions

View File

@@ -0,0 +1,3 @@
#name : v.begin(), v.end()
# --
${1:v}.begin(), $1.end

View File

@@ -0,0 +1,8 @@
#name : class ... { ... }
# --
class ${1:Name}
{
public:
$1($2);
virtual ~$1();
};

View File

@@ -0,0 +1,4 @@
#name : using namespace ...
# --
using namespace ${std};
$0