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.
This commit is contained in:
William Carroll 2020-01-23 13:51:53 +00:00
parent 3732ed4795
commit d7c52e4e64

View file

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