<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.add('&lt;+selector expression+&gt;')&lt;++&gt;
+${1:obj}.add('${2:selector expression}')${3}</diff>
      <filename>javascript-jquery/add.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.addClass('&lt;+class name+&gt;')&lt;++&gt;
+${1:obj}.addClass('${2:class name}')${3}</diff>
      <filename>javascript-jquery/addClass.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.after('&lt;+Some text &lt;b&gt;and bold!&lt;/b&gt;+&gt;')&lt;++&gt;
+${1:obj}.after('${2:Some text &lt;b&gt;and bold!&lt;/b&gt;}')${3}</diff>
      <filename>javascript-jquery/after.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,18 +1,18 @@
 $.ajax({
-  url: &quot;&lt;+mydomain.com/url+&gt;&quot;,
-  type: &quot;&lt;+POST+&gt;&quot;,
-  dataType: &quot;&lt;+xml/html/script/json+&gt;&quot;,
-  data: $.param( $(&quot;&lt;+Element or Expression+&gt;&quot;) ),
+	url: &quot;${1:mydomain.com/url}&quot;,
+	type: &quot;${2:POST}&quot;,
+	dataType: &quot;${3:xml/html/script/json}&quot;,
+	data: $.param( $(&quot;${4:Element or Expression}&quot;) ),
 
-  complete: function() {
-    &lt;+//called when complete+&gt;
-  },
+	complete: function() {
+		${5://called when complete}
+	},
 
-  success: function() {
-    &lt;+//called when successful+&gt;
-  },
+	success: function() {
+		${6://called when successful}
+	},
 
-  error: function() {
-    &lt;+//called when there is an error+&gt;
-  },
+	error: function() {
+		${7://called when there is an error}
+	},
 });</diff>
      <filename>javascript-jquery/ajax.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.ajaxError(function(&lt;+request, settings+&gt;) {
-  &lt;+//stuff to do when an AJAX call returns an error+&gt;;
+.ajaxError(function(${1:request, settings}) {
+	${2://stuff to do when an AJAX call returns an error};
 });
-&lt;++&gt;
\ No newline at end of file
+${3}</diff>
      <filename>javascript-jquery/ajaxerror.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-$.get('&lt;+/test/ajax-test.xml+&gt;', function(xml){
-  &lt;+alert( (&quot;title&quot;,xml).text() ) //optional stuff to do after get;+&gt;
-});
\ No newline at end of file
+$.get('${1:/test/ajax-test.xml}', function(xml){
+	${2:alert( (&quot;title&quot;,xml).text() ) //optional stuff to do after get;}
+});</diff>
      <filename>javascript-jquery/ajaxget.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-$.getIfModified('&lt;+/test/test.cgi+&gt;', function(data){
-  &lt;+alert( &quot;Data loaded: &quot; + data ) //optional stuff to do after get;+&gt;
+$.getIfModified('${1:/test/test.cgi}', function(data){
+	${2:alert( &quot;Data loaded: &quot; + data ) //optional stuff to do after get;}
 });</diff>
      <filename>javascript-jquery/ajaxgetif.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
-.ajaxSend(function(&lt;+request, settings+&gt;) {
-  &lt;+//stuff to do when an AJAX call returns an error+&gt;;
+.ajaxSend(function(${1:request, settings}) {
+	${2://stuff to do when an AJAX call returns an error};
 });
-&lt;++&gt;
\ No newline at end of file
+${3}</diff>
      <filename>javascript-jquery/ajaxsend.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,18 +1,18 @@
 $.ajaxSetup({
-  url: &quot;&lt;+mydomain.com/url+&gt;&quot;,
-  type: &quot;&lt;+POST+&gt;&quot;,
-  dataType: &quot;&lt;+xml/html/script/json+&gt;&quot;,
-  data: $.param( $(&quot;&lt;+Element or Expression+&gt;&quot;) ),
+	url: &quot;${1:mydomain.com/url}&quot;,
+	type: &quot;${2:POST}&quot;,
+	dataType: &quot;${3:xml/html/script/json}&quot;,
+	data: $.param( $(&quot;${4:Element or Expression}&quot;) ),
 
-  complete: function() {
-    &lt;+//called when complete+&gt;
-  },
+	complete: function() {
+		${5://called when complete}
+	},
 
-  success: function() {
-    &lt;+//called when successful+&gt;
-  },
+	success: function() {
+		${6://called when successful}
+	},
 
-  error: function() {
-    &lt;+//called when there is an error+&gt;
-  },
+	error: function() {
+		${7://called when there is an error}
+	},
 });</diff>
      <filename>javascript-jquery/ajaxsetup.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
 $.ajaxStart(function() {
-  &lt;+//stuff to do when an AJAX call is started and no other AJAX calls are in progress+&gt;;
+	${1://stuff to do when an AJAX call is started and no other AJAX calls are in progress};
 });
-&lt;++&gt;
\ No newline at end of file
+${2}</diff>
      <filename>javascript-jquery/ajaxstart.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
 $.ajaxStop(function() {
-  &lt;+//stuff to do when an AJAX call is started and no other AJAX calls are in progress+&gt;;
+	${1://stuff to do when an AJAX call is started and no other AJAX calls are in progress};
 });
-&lt;++&gt;
\ No newline at end of file
+${2}</diff>
      <filename>javascript-jquery/ajaxstop.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,4 +1,4 @@
 $.ajaxSuccess(function() {
-  &lt;+//stuff to do when an AJAX call is started and no other AJAX calls are in progress+&gt;;
+  ${1://stuff to do when an AJAX call is started and no other AJAX calls are in progress};
 });
-&lt;++&gt;
\ No newline at end of file
+${2}</diff>
      <filename>javascript-jquery/ajaxsuccess.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.animate({&lt;+param1: value1, param2: value2+&gt;}, &lt;+speed+&gt;)&lt;++&gt;
+${1:obj}.animate({${2:param1: value1, param2: value2}}, ${3:speed})${4}</diff>
      <filename>javascript-jquery/animate.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.append('&lt;+Some text &lt;b&gt;and bold!&lt;/b&gt;+&gt;')&lt;++&gt;
+${1:obj}.append('${2:Some text &lt;b&gt;and bold!&lt;/b&gt;}')${3}</diff>
      <filename>javascript-jquery/append.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.appendTo('&lt;+selector expression+&gt;')&lt;++&gt;
+${1:obj}.appendTo('${2:selector expression}')${3}</diff>
      <filename>javascript-jquery/appendTo.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.before('&lt;+Some text &lt;b&gt;and bold!&lt;/b&gt;+&gt;')&lt;++&gt;
+${1:obj}.before('${2:Some text &lt;b&gt;and bold!&lt;/b&gt;}')${3}</diff>
      <filename>javascript-jquery/before.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.bind('&lt;+event name+&gt;', function(&lt;+event+&gt;) {
-	&lt;+// Act on the event+&gt;
-});
\ No newline at end of file
+${1:obj}.bind('${2:event name}', function(${3:event}) {
+	${4:// Act on the event}
+});</diff>
      <filename>javascript-jquery/bind.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.blur(function() {
-	&lt;+// Act on the event+&gt;
-});
\ No newline at end of file
+${1:obj}.blur(function() {
+	${2:// Act on the event}
+});</diff>
      <filename>javascript-jquery/blur.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.change(function() {
-	&lt;+// Act on the event+&gt;
-});
\ No newline at end of file
+${1:obj}.change(function() {
+	${2:// Act on the event}
+});</diff>
      <filename>javascript-jquery/change.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.children('&lt;+selector expression+&gt;')&lt;++&gt;
+${1:obj}.children('${2:selector expression}')${3}</diff>
      <filename>javascript-jquery/children.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.click(function() {
-	&lt;+// Act on the event+&gt;
-});
\ No newline at end of file
+${1:obj}.click(function() {
+	${2:// Act on the event}
+});</diff>
      <filename>javascript-jquery/click.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.clone()&lt;++&gt;
+${1:obj}.clone()${2}</diff>
      <filename>javascript-jquery/clone.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.contains('&lt;+text to find+&gt;')&lt;++&gt;
+${1:obj}.contains('${2:text to find}')${3}</diff>
      <filename>javascript-jquery/contains.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.css('&lt;+attribute+&gt;', '&lt;+value+&gt;')&lt;++&gt;
+${1:obj}.css('${2:attribute}', '${3:value}')${4}</diff>
      <filename>javascript-jquery/css.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.css({&lt;+attribute1+&gt;: '&lt;+value1+&gt;', &lt;+attribute2+&gt;: '&lt;+value2+&gt;'})&lt;++&gt;
+${1:obj}.css({${2:attribute1}: '${3:value1}', ${4:attribute2}: '${5:value2}'})${6}</diff>
      <filename>javascript-jquery/cssm.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.dblclick(function() {
-	&lt;+// Act on the event+&gt;
-});
\ No newline at end of file
+${1:obj}.dblclick(function() {
+	${2:// Act on the event}
+});</diff>
      <filename>javascript-jquery/dblclick.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.each(function(index) {
-	&lt;+this.innerHTML = this + &quot; is the element, &quot; + index + &quot; is the position&quot;;+&gt;
-});
\ No newline at end of file
+${1:obj}.each(function(index) {
+	${2:this.innerHTML = this + &quot; is the element, &quot; + index + &quot; is the position&quot;;}
+});</diff>
      <filename>javascript-jquery/each.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-$('&lt;++&gt;')&lt;++&gt;
+$('${1}')${2:}</diff>
      <filename>javascript-jquery/el.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-$.trim('&lt;+string+&gt;')&lt;++&gt;
+$.trim('${1:string}')${2}</diff>
      <filename>javascript-jquery/eltrim.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.end()&lt;++&gt;
+${1:obj}.end()${2}</diff>
      <filename>javascript-jquery/end.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.error(function() {
-	&lt;+// Act on the event+&gt;
-});
\ No newline at end of file
+${1:obj}.error(function() {
+	${2:// Act on the event}
+});</diff>
      <filename>javascript-jquery/error.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.fadeIn('&lt;+slow/400/fast+&gt;')&lt;++&gt;
+${1:obj}.fadeIn('${2:slow/400/fast}')${3}</diff>
      <filename>javascript-jquery/fadein.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.fadeIn('slow/400/fast', function() {
-	&lt;+//Stuff to do *after* the animation takes place+&gt;;
+${1:obj}.fadeIn('slow/400/fast', function() {
+	${2://Stuff to do *after* the animation takes place};
 });</diff>
      <filename>javascript-jquery/fadeinc.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.fadeOut('&lt;+slow/400/fast+&gt;')&lt;++&gt;
+${1:obj}.fadeOut('${2:slow/400/fast}')${3}</diff>
      <filename>javascript-jquery/fadeout.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.fadeOut('slow/400/fast', function() {
-	&lt;+//Stuff to do *after* the animation takes place+&gt;;
+${1:obj}.fadeOut('slow/400/fast', function() {
+	${2://Stuff to do *after* the animation takes place};
 });</diff>
      <filename>javascript-jquery/fadeoutc.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.fadeTo('&lt;+slow/400/fast+&gt;', &lt;+0.5+&gt;)&lt;++&gt;
+${1:obj}.fadeTo('${2:slow/400/fast}', ${3:0.5})${4}</diff>
      <filename>javascript-jquery/fadeto.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.fadeTo('slow/400/fast', &lt;+0.5+&gt;, function() {
-	&lt;+//Stuff to do *after* the animation takes place+&gt;;
+${1:obj}.fadeTo('slow/400/fast', ${2:0.5}, function() {
+	${3://Stuff to do *after* the animation takes place};
 });</diff>
      <filename>javascript-jquery/fadetoc.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.filter('&lt;+selector expression+&gt;')&lt;++&gt;
+${1:obj}.filter('${2:selector expression}')${3}</diff>
      <filename>javascript-jquery/filter.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.find('&lt;+selector expression+&gt;')&lt;++&gt;
+${1:obj}.find('${2:selector expression}')${3}</diff>
      <filename>javascript-jquery/find.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.focus(function() {
-	&lt;+// Act on the event+&gt;
-});
\ No newline at end of file
+${1:obj}.focus(function() {
+	${2:// Act on the event}
+});</diff>
      <filename>javascript-jquery/focus.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.get(&lt;+element index+&gt;)&lt;++&gt;
+${1:obj}.get(${2:element index})${3}</diff>
      <filename>javascript-jquery/get.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-$.getScript('&lt;+somescript.js+&gt;', function(){
-  &lt;+//optional stuff to do after getScript;+&gt;
+$.getScript('${1:somescript.js}', function(){
+	${2://optional stuff to do after getScript;}
 });</diff>
      <filename>javascript-jquery/getscript.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.height(&lt;+integer+&gt;)&lt;++&gt;
+${1:obj}.height(${2:integer})${3}</diff>
      <filename>javascript-jquery/height.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.hide('&lt;+slow/400/fast+&gt;')&lt;++&gt;
+${1:obj}.hide('${2:slow/400/fast}')${3}</diff>
      <filename>javascript-jquery/hide.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.hide('&lt;+slow/400/fast+&gt;', function() {
-	&lt;+//Stuff to do *after* the animation takes place+&gt;
+${1:obj}.hide('${2:slow/400/fast}', function() {
+	${3://Stuff to do *after* the animation takes place}
 });</diff>
      <filename>javascript-jquery/hidec.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
-&lt;+obj+&gt;.hover(function() {
-	&lt;+// Stuff to do when the mouse enters the element;+&gt;
+${1:obj}.hover(function() {
+	${2:// Stuff to do when the mouse enters the element;}
 }, function() {
-	&lt;+// Stuff to do when the mouse leaves the element;+&gt;
-});&lt;++&gt;
\ No newline at end of file
+	${3:// Stuff to do when the mouse leaves the element;}
+});${4}</diff>
      <filename>javascript-jquery/hover.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.html('&lt;+Some text &lt;b&gt;and bold!&lt;/b&gt;+&gt;')&lt;++&gt;
+${1:obj}.html('${2:Some text &lt;b&gt;and bold!&lt;/b&gt;}')${3}</diff>
      <filename>javascript-jquery/html.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.insertAfter('&lt;+selector expression+&gt;')&lt;++&gt;
+${1:obj}.insertAfter('${2:selector expression}')${3}</diff>
      <filename>javascript-jquery/insertAfter.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.insertBefore('&lt;+selector expression+&gt;')&lt;++&gt;
+${1:obj}.insertBefore('${2:selector expression}')${3}</diff>
      <filename>javascript-jquery/insertBefore.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.is('&lt;+selector expression+&gt;')&lt;++&gt;
+${1:obj}.is('${2:selector expression}')${3}</diff>
      <filename>javascript-jquery/is.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.load(function() {
-	&lt;+// Act on the event+&gt;
-});
\ No newline at end of file
+${1:obj}.load(function() {
+	${2:// Act on the event}
+});</diff>
      <filename>javascript-jquery/load.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.mousedown(function() {
-	&lt;+// Act on the event+&gt;
-});
\ No newline at end of file
+${1:obj}.mousedown(function() {
+	${2:// Act on the event}
+});</diff>
      <filename>javascript-jquery/mdown.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.mousemove(function() {
-	&lt;+// Act on the event+&gt;
-});
\ No newline at end of file
+${1:obj}.mousemove(function() {
+	${2:// Act on the event}
+});</diff>
      <filename>javascript-jquery/mmove.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.mouseout(function() {
-	&lt;+// Act on the event+&gt;
-});
\ No newline at end of file
+${1:obj}.mouseout(function() {
+	${2:// Act on the event}
+});</diff>
      <filename>javascript-jquery/mout.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.mouseover(function() {
-	&lt;+// Act on the event+&gt;
-});
\ No newline at end of file
+${1:obj}.mouseover(function() {
+	${2:// Act on the event}
+});</diff>
      <filename>javascript-jquery/mover.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.mouseup(function() {
-	&lt;+// Act on the event+&gt;
-});
\ No newline at end of file
+${1:obj}.mouseup(function() {
+	${2:// Act on the event}
+});</diff>
      <filename>javascript-jquery/mup.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.next('&lt;+selector expression+&gt;')&lt;++&gt;
+${1:obj}.next('${2:selector expression}')${3}</diff>
      <filename>javascript-jquery/next.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.not('&lt;+selector expression+&gt;')&lt;++&gt;
+${1:obj}.not('${2:selector expression}')${3}</diff>
      <filename>javascript-jquery/not.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.one('&lt;+event name+&gt;', function(&lt;+event+&gt;) {
-	&lt;+// Act on the event once+&gt;
-});
\ No newline at end of file
+${1:obj}.one('${2:event name}', function(${3:event}) {
+	${4:// Act on the event once}
+});</diff>
      <filename>javascript-jquery/one.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.parent('&lt;+selector expression+&gt;')&lt;++&gt;
+${1:obj}.parent('${2:selector expression}')${3}</diff>
      <filename>javascript-jquery/parent.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.parents('&lt;+selector expression+&gt;')&lt;++&gt;
+${1:obj}.parents('${2:selector expression}')${3}</diff>
      <filename>javascript-jquery/parents.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.prepend('&lt;+Some text &lt;b&gt;and bold!&lt;/b&gt;+&gt;')&lt;++&gt;
+${1:obj}.prepend('${2:Some text &lt;b&gt;and bold!&lt;/b&gt;}')${3}</diff>
      <filename>javascript-jquery/prepend.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.prependTo('&lt;+selector expression+&gt;')&lt;++&gt;
+${1:obj}.prependTo('${2:selector expression}')${3}</diff>
      <filename>javascript-jquery/prependto.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.prev('&lt;+selector expression+&gt;')&lt;++&gt;
+${1:obj}.prev('${2:selector expression}')${3}</diff>
      <filename>javascript-jquery/prev.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
 $(document).ready(function() {
-	&lt;+// Stuff to do as soon as the DOM is ready;+&gt;
+	${1:// Stuff to do as soon as the DOM is ready;}
 });</diff>
      <filename>javascript-jquery/ready.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.remove()&lt;++&gt;
+${1:obj}.remove()${2}</diff>
      <filename>javascript-jquery/remove.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.removeAttr('&lt;+attribute name+&gt;')&lt;++&gt;
+${1:obj}.removeAttr('${2:attribute name}')${3}</diff>
      <filename>javascript-jquery/removeattr.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.removeClass('&lt;+class name+&gt;')&lt;++&gt;
+${1:obj}.removeClass('${2:class name}')${3}</diff>
      <filename>javascript-jquery/removeclass.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.reset(function() {
-	&lt;+// Act on the event+&gt;
-});
\ No newline at end of file
+${1:obj}.reset(function() {
+	${2:// Act on the event}
+});</diff>
      <filename>javascript-jquery/reset.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.resize(function() {
-	&lt;+// Act on the event+&gt;
-});
\ No newline at end of file
+${1:obj}.resize(function() {
+	${2:// Act on the event}
+});</diff>
      <filename>javascript-jquery/resize.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.scroll(function() {
-	&lt;+// Act on the event+&gt;
-});
\ No newline at end of file
+${1:obj}.scroll(function() {
+	${2:// Act on the event}
+});</diff>
      <filename>javascript-jquery/scroll.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.slideDown('&lt;+slow/400/fast+&gt;')&lt;++&gt;
+${1:obj}.slideDown('${2:slow/400/fast}')${3}</diff>
      <filename>javascript-jquery/sdown.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.slideDown('&lt;+slow/400/fast+&gt;', function() {
-	&lt;+//Stuff to do *after* the animation takes place+&gt;;
-});
\ No newline at end of file
+${1:obj}.slideDown('${2:slow/400/fast}', function() {
+	${3://Stuff to do *after* the animation takes place};
+});</diff>
      <filename>javascript-jquery/sdownc.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.slideUp('&lt;+slow/400/fast+&gt;', function() {
-	&lt;+//Stuff to do *after* the animation takes place+&gt;;
-});
\ No newline at end of file
+${1:obj}.slideUp('${2:slow/400/fast}', function() {
+	${3://Stuff to do *after* the animation takes place};
+});</diff>
      <filename>javascript-jquery/sdupc.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.select(function() {
-	&lt;+// Act on the event+&gt;
-});
\ No newline at end of file
+${1:obj}.select(function() {
+	${2:// Act on the event}
+});</diff>
      <filename>javascript-jquery/select.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.show('&lt;+slow/400/fast+&gt;')&lt;++&gt;
+${1:obj}.show('${2:slow/400/fast}')${3}</diff>
      <filename>javascript-jquery/show.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.show('&lt;+slow/400/fast+&gt;', function() {
-	&lt;+//Stuff to do *after* the animation takes place+&gt;
-});
\ No newline at end of file
+${1:obj}.show('${2:slow/400/fast}', function() {
+	${3://Stuff to do *after* the animation takes place}
+});</diff>
      <filename>javascript-jquery/showc.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.siblings('&lt;+selector expression+&gt;')&lt;++&gt;
+${1:obj}.siblings('${2:selector expression}')${3}</diff>
      <filename>javascript-jquery/sib.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.size()&lt;++&gt;
+${1:obj}.size()${2}</diff>
      <filename>javascript-jquery/size.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.slideToggle('&lt;+slow/400/fast+&gt;')&lt;++&gt;
+${1:obj}.slideToggle('${2:slow/400/fast}')${3}</diff>
      <filename>javascript-jquery/stoggle.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,3 @@
-&lt;+obj+&gt;.submit(function() {
-	&lt;+// Act on the event once+&gt;
-});
\ No newline at end of file
+${1:obj}.submit(function() {
+	${2:// Act on the event once}
+});</diff>
      <filename>javascript-jquery/submit.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.slideUp('&lt;+slow/400/fast+&gt;')&lt;++&gt;
+${1:obj}.slideUp('${2:slow/400/fast}')${3}</diff>
      <filename>javascript-jquery/sup.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.text(&lt;+'some text'+&gt;)&lt;++&gt;
+${1:obj}.text(${2:'some text'})${3}</diff>
      <filename>javascript-jquery/text.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-$(this)&lt;++&gt;
+$(this)${1}</diff>
      <filename>javascript-jquery/this.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
-&lt;+obj+&gt;.toggle(function() {
-	&lt;+// Stuff to do every *odd* time the element is clicked;+&gt;
+${1:obj}.toggle(function() {
+	${2:// Stuff to do every *odd* time the element is clicked;}
 }, function() {
-	&lt;+// Stuff to do every *even* time the element is clicked;+&gt;
+	${3:// Stuff to do every *even* time the element is clicked;}
 });
-&lt;++&gt;
\ No newline at end of file
+${4}</diff>
      <filename>javascript-jquery/tog.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.toggleClass('&lt;+class name+&gt;')&lt;++&gt;
+${1:obj}.toggleClass('${2:class name}')${3}</diff>
      <filename>javascript-jquery/togclass.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.toggle('&lt;+slow/400/fast+&gt;')&lt;++&gt;
+${1:obj}.toggle('${2:slow/400/fast}')${3}</diff>
      <filename>javascript-jquery/togsh.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.trigger('&lt;+event name+&gt;')&lt;++&gt;
+${1:obj}.trigger('${2:event name}')${3}</diff>
      <filename>javascript-jquery/trig.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.unbind('&lt;+event name+&gt;')&lt;++&gt;
+${1:obj}.unbind('${2:event name}')${3}</diff>
      <filename>javascript-jquery/unbind.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1,2 +1 @@
-&lt;+obj+&gt;.val('&lt;+text+&gt;')&lt;++&gt;
-
+${1:obj}.val('${2:text}')${3}</diff>
      <filename>javascript-jquery/val.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.width(&lt;+integer+&gt;)&lt;++&gt;
+${1:obj}.width(${2:integer})${3}</diff>
      <filename>javascript-jquery/width.snippet</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-&lt;+obj+&gt;.wrap('&lt;+&amp;lt;div class=&quot;extra-wrapper&quot;&amp;gt;&amp;lt;/div&amp;gt;+&gt;')&lt;++&gt;
+${1:obj}.wrap('${2:&amp;lt;div class=&quot;extra-wrapper&quot;&amp;gt;&amp;lt;/div&amp;gt;}')${3}</diff>
      <filename>javascript-jquery/wrap.snippet</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>f7e21d664d82870898bf10f69b6a50024526daa4</id>
    </parent>
  </parents>
  <author>
    <name>Reza Jelveh &lt;&gt;</name>
    <email nil="true"></email>
  </author>
  <url>http://github.com/nelsonmhjr/snipmate-snippets/commit/75573b9d3b1d60c15269e862bb87bca4c578f813</url>
  <id>75573b9d3b1d60c15269e862bb87bca4c578f813</id>
  <committed-date>2009-02-19T00:27:54-08:00</committed-date>
  <authored-date>2009-02-19T00:27:49-08:00</authored-date>
  <message>fixed most jquery snippets</message>
  <tree>dbe7720c01d494341732c4117d7cd8881d9cabc7</tree>
  <committer>
    <name>Reza Jelveh &lt;&gt;</name>
    <email nil="true"></email>
  </committer>
</commit>
