1
0
mirror of https://github.com/gryf/snipmate.vim.git synced 2025-12-19 20:38:05 +01:00

added lambda python snippet

This commit is contained in:
Michael Sanders
2009-06-10 21:43:28 -04:00
parent 0906a1e428
commit 692f33e3de

View File

@@ -44,6 +44,9 @@ snippet property
${3:return self._$1}
def fset(self, value):
${4:self._$1 = value}
# Lambda
snippet ld
${1:var} = lambda ${2:vars} : ${3:action}
snippet .
self.
snippet try Try/Except