fix indent (was 3 spaces) of snippets for python-mode

This commit is contained in:
Zhang Chiyuan
2008-04-25 15:01:39 +00:00
parent 6c51fd8e21
commit db6a74078f
10 changed files with 112 additions and 106 deletions

View File

@@ -2,10 +2,10 @@
#name : _get_foo ... _set_foo ... foo=property(...)
# --
def _set_${1:foo}(self, value):
self._$1 = value
self._$1 = value
def _get_$1(self):
return self._$1
return self._$1
$1 = property(_get_$1, _set_$1)