lectures.alex.balgavy.eu

Lecture notes from university.
git clone git://git.alex.balgavy.eu/lectures.alex.balgavy.eu.git
Log | Files | Refs | Submodules

New-Property.sublime-snippet (229B)


      1 <snippet>
      2 	<content><![CDATA[property
      3 def ${1:foo}(self):
      4 	return self.${2:_$1}
      5 $0]]></content>
      6 	<tabTrigger>property</tabTrigger>
      7 	<scope>source.python meta.annotation</scope>
      8 	<description>New Property</description>
      9 </snippet>