fix a 'bug' in the class snippet for c++-mode

This commit is contained in:
Zhang Chiyuan 2008-12-12 05:45:36 +00:00
parent acf04d6952
commit de37bc0269

View File

@ -3,6 +3,6 @@
class ${1:Name} class ${1:Name}
{ {
public: public:
${1:$(yas/substr text "[^:]*")}($2); ${1:$(yas/substr text "[^: ]*")}($2);
virtual ~${1:$(yas/substr text "[^:]*")}(); virtual ~${1:$(yas/substr text "[^: ]*")}();
}; };