Skip to content

Commit

Permalink
elisp cond snippet
Browse files Browse the repository at this point in the history
  • Loading branch information
Chen Bin committed Oct 23, 2014
1 parent 2cd2561 commit b2c00f5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions snippets/emacs-lisp-mode/cond.yasnippet
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# -*- coding: utf-8; mode: snippet -*-
# name: (cond (COND1 BODY) (t ...))
# key: c
# contributor: Chen Bin <chenbin DOT sh AT gmail>
# --
(cond
((${1:CONDITION})
$0)
(t
(message "default"))

0 comments on commit b2c00f5

Please sign in to comment.