]> code.delx.au - gnu-emacs-elpa/blobdiff - packages/load-dir-0.0.2.el
* packages/all-1.0.el: Change version. Address byte-compiler warnings.
[gnu-emacs-elpa] / packages / load-dir-0.0.2.el
index cec7ce5d583e31b90ca00ac24613e96d506b42e4..1d4e0b63009c1d697f84ba5e906fc0a583378c18 100644 (file)
 
 ;;; Commentary:
 
-;; This library will load all Lisp files found in the `load-dirs' variable.
-;; (you may also want to set `load-dir-debug', `load-dir-recursive',
-;;  and `load-dir-ignore-errors')
-
-;; Normal usage in .emacs:
-
-;; (setq load-dirs '("~/mystuff")) ;; or Customize it
-;; (require 'load-dir) ;; this will add `load-dirs' to your `after-init-hook'
-
-;; Then after startup:
-
-;; Explicitly load new files only...
-;; M-x load-dirs
-
-;; Or reload all your files...
-;; M-x load-dirs-reload
+;; This package provides a way to load all Emacs Lisp snippets (they
+;; don't have to be libraries) in a directory on startup or when Emacs is
+;; already running.  It won't reload snippets unless the user requests
+;; it, so for instance adding a lambda to a hook is usually safe.
+;;
+;; You can specify ~/.emacs.d/load.d, a single directory, or a list of
+;; directories.  The file search can be recursive.
+;;
+;; The intent with ~/.emacs.d/load.d is to give package installers like
+;; el-get.el (see https://github.com/dimitri/el-get) and other tools a
+;; way to easily bootstrap themselves without necessarily modifying your
+;; .emacs or custom files directly.
 
 ;;; Code: