Add short-package snippet
This commit is contained in:
parent
c40fb9f504
commit
f1d3e7d6d7
1 changed files with 19 additions and 0 deletions
19
snippets/emacs-lisp-mode/short-package
Normal file
19
snippets/emacs-lisp-mode/short-package
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
# -*- mode: snippet -*-
|
||||||
|
# name: short-package
|
||||||
|
# --
|
||||||
|
;;; ${1:name}.el --- summary
|
||||||
|
|
||||||
|
;; Author: Maciej Szlosarczyk
|
||||||
|
;; Maintainer: Maciej Szlosarczyk
|
||||||
|
;; Version: ${2:0.1-snapshot}
|
||||||
|
|
||||||
|
;;; Commentary:
|
||||||
|
|
||||||
|
;; $1 does a thing.
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(message "Hello World!")
|
||||||
|
|
||||||
|
(provide '$1)
|
||||||
|
;;; $1.el ends here
|
||||||
Loading…
Add table
Add a link
Reference in a new issue