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