Unifying snippet formats

This commit is contained in:
Thomas Aylott
2008-07-19 18:11:57 -04:00
parent a6b41e8392
commit f62ab505b7
2 changed files with 3 additions and 5 deletions
+1 -3
View File
@@ -3,9 +3,7 @@
<plist version="1.0">
<dict>
<key>content</key>
<string>${1:}: function(${3:argument}){
$0
},</string>
<string>${1:}: function(${3:}){$0},</string>
<key>name</key>
<string>Object Method</string>
<key>scope</key>
+2 -2
View File
@@ -3,8 +3,8 @@
<plist version="1.0">
<dict>
<key>content</key>
<string>for (var ${1:key} in ${2:object}) {
${0:key}
<string>for (var ${1:property} in ${2:object}) {
${0:$1}
};</string>
<key>name</key>
<string>for (in) {…}</string>