1
0
mirror of https://github.com/amix/vimrc synced 2025-06-16 01:25:00 +08:00

Updated plugins

This commit is contained in:
amix
2015-01-18 12:58:28 +00:00
parent c3ba0f3c06
commit e7a01094b6
274 changed files with 4547 additions and 3075 deletions

View File

@ -298,19 +298,25 @@ snippet scalatest
${0:import org.scalatest.FunSuite}
#assert
snippet assert
assert(${1:a}==${0:b})
assert(${1:a} === ${0:b})
#ensuring(p 296)
snippet ensuring
ifel ensuring(${1:a}==${0:b})
#expect
snippet expect
expect(${0:what}) {
expect(${1:what}) {
${0}
}
#intercept
snippet intercept
intercept[${0:IllegalArgumentException}] {
intercept[${1:IllegalArgumentException}] {
${0}
}
#test
snippet test
test("${0:description}") {
test("${1:description}") {
${0}
}
#suite
snippet suite
class ${0:name} extends Suite {