Last commit before tagging and releasing

This commit is contained in:
capitaomorte
2009-08-29 17:59:02 +00:00
parent 15c7703b5b
commit b8dcf61367
640 changed files with 4360 additions and 77 deletions

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: br
# contributor: Translated from TextMate Snippet
# name: break
# --
break;

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: cs
# contributor: Translated from TextMate Snippet
# name: case
# --
case $1:
$2
$0

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: ca
# contributor: Translated from TextMate Snippet
# name: catch
# --
catch (${1:Exception} ${2:e}) {
$0
}

View File

@@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# key: de
# contributor: Translated from TextMate Snippet
# name: default
# --
default:
$0

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: elif
# contributor: Translated from TextMate Snippet
# name: else if
# --
else if ($1) {
$0
}

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: el
# contributor: Translated from TextMate Snippet
# name: else
# --
else {
$0
}

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: fore
# contributor: Translated from TextMate Snippet
# name: for (each)
# --
for ($1 : $2) {
$0
}

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: for
# contributor: Translated from TextMate Snippet
# name: for
# --
for ($1; $2; $3) {
$0
}

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: if
# contributor: Translated from TextMate Snippet
# name: if
# --
if ($1) {
$0
}

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: re
# contributor: Translated from TextMate Snippet
# name: return
# --
return

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: sw
# contributor: Translated from TextMate Snippet
# name: switch
# --
switch ($1) {
$0
}

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# key: th
# contributor: Translated from TextMate Snippet
# name: throw
# --
throw $0

View File

@@ -0,0 +1,8 @@
# -*- mode: snippet -*-
# key: wh
# contributor: Translated from TextMate Snippet
# name: while
# --
while ($1) {
$0
}