tvl-depot/configs/shared/.emacs.d/snippets/lisp-mode/defpackage
William Carroll d7c52e4e64 Define CL snippet for a module header
Since I'm new to the CL world, snippets are a useful note-taking analogue with
the added benefit of potentially speeding up my workflow should the
muscle-memory set.
2020-01-23 13:51:53 +00:00

9 lines
No EOL
160 B
Text

# -*- mode: snippet -*-
# name: Define package
# key: defp
# --
(in-package #:cl-user)
(defpackage #:$1
(:documentation "$2")
(:use #:cl))
(in-package #:$1)