Fix: moved snippets/js2-mode to snippets/js-mode

This commit is contained in:
João Távora
2013-02-18 22:29:25 +00:00
parent 2cf544b67f
commit e3a5f6e0c7
29 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
# -*- mode: snippet -*-
# name: while
# key: while
# --
var i = $1.length;
while( i -- ){
$0
}