hamacs/snippets/org-mode/emacs-lisp-defun
Howard Abrams 2317cc5d37 Going back to <... for Yasnippet expansions
And I need to make these uppercase if I'm going to officially publish
a book on the subject.
2024-08-17 22:30:27 -07:00

11 lines
189 B
Text

# -*- mode: snippet -*-
# name: emacs-lisp-defun
# key: <slf
# --
#+BEGIN_SRC emacs-lisp
(defun ${1:fun} (${2:args})
"${3:docstring}"
${4:(interactive${5: "${6:P}"})}
$0)
#+END_SRC