1
0
mirror of https://github.com/amix/vimrc synced 2025-07-08 09:35:00 +08:00

renamed sources_non_forked folder to bundle

This commit is contained in:
Mirosław Pragłowski
2014-05-09 21:28:39 +02:00
parent 1b24133310
commit a1339baae9
1424 changed files with 5 additions and 33 deletions

View File

@ -0,0 +1,2 @@
class ${1:``Snippet_PythonClassNameFromFilename()``}(${2:data}):
${3}

View File

@ -0,0 +1,2 @@
def ${1:name}(${2:data}):
${3}

View File

@ -0,0 +1,3 @@
for ${1:var} in ${2:type}:
${3:pass}
${4}

View File

@ -0,0 +1,2 @@
from ${1:module} import ${2:name}
${3}

View File

@ -0,0 +1,3 @@
def get_${1:name}(self):
return self._$1
${2}

View File

@ -0,0 +1,2 @@
if __name__ == '__main__':
${1}

View File

@ -0,0 +1,2 @@
import ${1:module}
${2}

View File

@ -0,0 +1,2 @@
def __init__(self, ${1:args}):
${2}

View File

@ -0,0 +1 @@
def set_${1:name}(self, ${2:value}):

View File

@ -0,0 +1,4 @@
try:
${1}
except ${2:Exception}
${3}