Add scheme snippet.

This commit is contained in:
ujihisa 2013-05-30 19:34:08 -07:00
parent 1f6f777f57
commit 5cb31a9205
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
snippet cond
(cond
((${1}) ${2})
(${0:else}))
snippet case
(case ${1}
((${2}) ${3})
(${0:else}))
# gauche specific
snippet gauche-testsuite
abbr (use gauche.test)(test-start ...
options head
(use gauche.test)
(test-start "${1}.scm")
(load "$1.scm")
(test* "${2}" ${3:expected} ${4:actual})