My attempt to optimize my emacs load time <1 second
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
139 B

  1. # -*- mode: snippet -*-
  2. # name: defun
  3. # key: defun
  4. # --
  5. (defun ${1:name} (${2:args})
  6. "${3:Description}."
  7. ${4:(interactive)}
  8. $0)