Merge pull request #342 from equwal/rename-cond

Renamed "switch" (which is not in lisp) to "cond" which is.
This commit is contained in:
Andrea Crotti 2019-09-24 21:24:08 +01:00 committed by GitHub
commit 21a307f2fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
# -*- mode: snippet -*-
# name: switch
# key: switch
# name: cond
# key: cond
# --
(cond (${1:case1} (${2:do-this}))
(${3:case2} (${4:do-this}))
(${3:case2} (${4:do-this}))
(t ${5:default}))
$0