At some point I remember encountering a command that generated a skeleton of a properly formatted emacs-lisp library as below:
;;; library.el --- summary
;; Copyright ...
;; Author:
;; Keywords:
;; License
;;; Commentary:
;;
;;; Code:
(provide 'library)
;;; library.el ends here
After some searching I found checkdoc
, which prompts for summary, and commentary and code. Is that the only template generation for a new emacs lisp library builtin to emacs core? Are there any tempo or skeleton based templates for a new emacs lisp library builtin to Emacs core, or somewhere else with yasnippet?