Add defhydra and in-package snippets

This commit is contained in:
contrapunctus 2022-02-09 16:42:00 +05:30
parent db13c38f17
commit 0a047c8d7a
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: defhydra
# key: dh
# --
(defhydra ${1:name} (${2:args})
${3:"docstring"}
$0)

View File

@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# contributor: Mark Karpov
# name: my-in-package
# key: ip
# --
(in-package :${1:package})
$0