Import snippets for scala-mode and nxml-mode from Anders.

This commit is contained in:
Zhang Chiyuan
2008-12-03 15:03:55 +00:00
parent 6774448630
commit 0ca7da8347
134 changed files with 705 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#Author : Jonas Bonèr <jonas@jonasboner.com>
#name : try { .. } catch { case e => ..} finally { ..}
# --
try {
$0
} catch {
case ${1:e}: ${2:Exception} =>
${1:println(\"ERROR: \" + e) // TODO: handle exception}\n}
} finally {
}