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.
|
# -*- mode: snippet -*-
|
|
# name: defsystem
|
|
# key: defs
|
|
# contributor: Manx <boku@plum.moe>
|
|
# --
|
|
(asdf:defsystem #:${1:system-name}
|
|
:description "${2:none}"
|
|
:author "Manx (boku@plum.moe)"
|
|
:license ${3:"X11/MIT"}
|
|
:version "0.0.1"
|
|
:serial t
|
|
:depends-on ${4:}
|
|
:Components ${5:})
|
|
$0 |