Skip to content
config-emacs.git
⋮
Summary
Commits
Files
config-emacs.git
/
resources
/
snippets
/
emacs-lisp-mode
/
cond
[Emacs Lisp] Personal ~/.emacs.d/ configuration folder.
View raw
1
# -*- mode: snippet -*-
2
# name: cond
3
# key: cond
4
# --
5
(cond (${1:first-condition} ${2:first-return})
6
(${3:second-condition} ${4:second-return})
7
(t ${5:always-true-return}))
8
$0
Summary
Commits
Files