Adding new snip: scala

This commit is contained in:
ujihisa 2012-10-03 21:22:37 -07:00
parent 6eef3d5462
commit ab9dc6873b
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,42 @@
snippet match
abbr match {\n case .. => ..
match {
case ${1} => ${0}
}
snippet try
abbr try {} catch { case ... }
prev_word '^'
try {
${1}
} catch {
case e${2:: Exception} => ${0}
}
snippet p
abbr println()
prev_word '^'
println(${1})${0}
snippet pn
abbr println('name, name)
prev_word '^'
println('${1:name}, $1)${0}
snippet main
abbr def main(args: Array[String]) {
prev_word '^'
def main(args: Array[String]) {
${0}
}
snippet hello
abbr hello2
object HelloWorld {
def main(args: Array[String]) {
println("Hello, world!")
}
}
# scala's indent plugin doesn't work well. use hard-tab for this snippet.
# vim: set noexpandtab :

View File

@ -395,6 +395,7 @@ CHANGELOG *neosnippet-changelog*
2012-10-04
- Refactored snippets filter.
- Changed :NeoSnippetEdit behavior.
- Added scala snip.
2012-10-01
- Deleted neosnippet#force_expandable().