From 46cb8486cfcc4e3d6955a19d029a7df8c37beab3 Mon Sep 17 00:00:00 2001 From: fortable1999 Date: Thu, 2 May 2013 14:16:05 +0900 Subject: [PATCH] python snippet added --- snippets/python.snippets | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/snippets/python.snippets b/snippets/python.snippets index 28a2948a..affc3625 100644 --- a/snippets/python.snippets +++ b/snippets/python.snippets @@ -24,6 +24,10 @@ snippet cl ${5:super($1, self).__init__()} self.$4 = $4 ${6} +# Simple New Class +snippet cls + class ${1:ClassName}(${2:object}): + ${3:pass} # New Function snippet def def ${1:fname}(${2:`indent('.') ? 'self' : ''`}):