about summary refs log tree commit diff
path: root/users/wpcarro/emacs/.emacs.d/snippets/emacs-lisp-mode/function
# -*- mode: snippet -*-
# name: Function
# key: fn
# expand-env: ((yas-indent-line 'fixed))
# --
(defun $1 ($2)
  "$3"
  $4)