summaryrefslogtreecommitdiffstats
path: root/emacs.d/snippets/text-mode/emacs-lisp-mode/defun
blob: 0105d206bfa993b87cdf860ce7216a7f37ed8ad3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#name : function template
#contributor : Xah Lee
# --
(defun $1 ()
  "thisandthat."
  (interactive)
  (let (var1)
    (setq var1 some)
    $0
  )
)