esh-module doc fixes.
[bpt/emacs.git] / lisp / eshell / esh-module.el
CommitLineData
60370d40 1;;; esh-module.el --- Eshell modules
affbf647 2
73b0cd50 3;; Copyright (C) 1999-2000, 2002-2011 Free Software Foundation, Inc.
affbf647 4
04f9dc47
SM
5;; Author: John Wiegley <johnw@gnu.org>
6;; Keywords: processes
04f9dc47 7
affbf647
GM
8;; This file is part of GNU Emacs.
9
4ee57b2a 10;; GNU Emacs is free software: you can redistribute it and/or modify
affbf647 11;; it under the terms of the GNU General Public License as published by
4ee57b2a
GM
12;; the Free Software Foundation, either version 3 of the License, or
13;; (at your option) any later version.
affbf647
GM
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
4ee57b2a 21;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
affbf647 22
fa31eac3
GM
23;;; Code:
24
affbf647
GM
25(provide 'esh-module)
26
4184766e 27(require 'eshell)
fa31eac3 28(require 'esh-util)
affbf647
GM
29
30(defgroup eshell-module nil
31 "The `eshell-module' group is for Eshell extension modules, which
32provide optional behavior which the user can enable or disable by
33customizing the variable `eshell-modules-list'."
34 :tag "Extension modules"
35 :group 'eshell)
36
affbf647
GM
37;; load the defgroup's for the standard extension modules, so that
38;; documentation can be provided when the user customize's
39;; `eshell-modules-list'.
d3d5f4f5 40(load "esh-groups" nil 'nomessage)
affbf647
GM
41
42;;; User Variables:
43
44(defcustom eshell-module-unload-hook
45 '(eshell-unload-extension-modules)
4a0f18a8 46 "A hook run when `eshell-module' is unloaded."
affbf647
GM
47 :type 'hook
48 :group 'eshell-module)
49
50(defcustom eshell-modules-list
51 '(eshell-alias
52 eshell-banner
53 eshell-basic
54 eshell-cmpl
55 eshell-dirs
56 eshell-glob
57 eshell-hist
58 eshell-ls
59 eshell-pred
60 eshell-prompt
61 eshell-script
62 eshell-term
63 eshell-unix)
4a0f18a8 64 "A list of optional add-on modules to be loaded by Eshell.
affbf647
GM
65Changes will only take effect in future Eshell buffers."
66 :type (append
67 (list 'set ':tag "Supported modules")
68 (mapcar
69 (function
70 (lambda (modname)
71 (let ((modsym (intern modname)))
72 (list 'const
73 ':tag (format "%s -- %s" modname
74 (get modsym 'custom-tag))
75 ':link (caar (get modsym 'custom-links))
76 ':doc (concat "\n" (get modsym 'group-documentation)
77 "\n ")
78 modsym))))
79 (sort (mapcar 'symbol-name
80 (eshell-subgroups 'eshell-module))
81 'string-lessp))
82 '((repeat :inline t :tag "Other modules" symbol)))
83 :group 'eshell-module)
84
85;;; Code:
86
87(defsubst eshell-using-module (module)
88 "Return non-nil if a certain Eshell MODULE is in use.
89The MODULE should be a symbol corresponding to that module's
90customization group. Example: `eshell-cmpl' for that module."
91 (memq module eshell-modules-list))
92
93(defun eshell-unload-extension-modules ()
94 "Unload any memory resident extension modules."
a9eeff78 95 (dolist (module (eshell-subgroups 'eshell-module))
affbf647
GM
96 (if (featurep module)
97 (ignore-errors
98 (message "Unloading %s..." (symbol-name module))
99 (unload-feature module)
100 (message "Unloading %s...done" (symbol-name module))))))
101
102;;; esh-module.el ends here