1 ;;; esh-module.el --- Eshell modules
3 ;; Copyright (C) 1999, 2000 Free Software Foundation
5 ;; Author: John Wiegley <johnw@gnu.org>
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
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.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
31 (defgroup eshell-module nil
32 "The `eshell-module' group is for Eshell extension modules, which
33 provide optional behavior which the user can enable or disable by
34 customizing the variable `eshell-modules-list'."
35 :tag
"Extension modules"
42 (defun eshell-load-defgroups (&optional directory
)
43 "Load `defgroup' statements from Eshell's module files."
45 (find-file-noselect (expand-file-name "esh-groups.el" directory
))
47 (insert ";;; do not modify this file; it is auto-generated\n\n")
48 (let ((files (directory-files (or directory
49 (car command-line-args-left
))
50 nil
"\\`em-.*\\.el\\'")))
52 (message "Loading defgroup from `%s'" (car files
))
55 (with-current-buffer (find-file-noselect (car files
))
56 (goto-char (point-min))
59 (if (eobp) (throw 'handled t
))
62 (defg (looking-at "(defgroup")))
65 (setq defgroup
(buffer-substring begin
(point))))))))
67 (insert defgroup
"\n\n")))
68 (setq files
(cdr files
))))
71 ;; load the defgroup's for the standard extension modules, so that
72 ;; documentation can be provided when the user customize's
73 ;; `eshell-modules-list'.
75 (when (and (boundp 'byte-compile-current-file
)
76 byte-compile-current-file
78 (equal (file-name-nondirectory byte-compile-current-file
)
80 ;; When eshell file names are expanded from a wildcard
81 ;; or by reading the Eshell directory, e.g. when they
82 ;; say "make recompile" in the lisp directory, Emacs on
83 ;; MS-DOS sees a truncated name "esh-modu.el" instead of
85 (and (fboundp 'msdos-long-file-names
)
86 (null (msdos-long-file-names))
87 (equal (file-name-nondirectory byte-compile-current-file
)
89 (let* ((directory (file-name-directory byte-compile-current-file
))
90 (elc-file (expand-file-name "esh-groups.elc" directory
)))
91 (eshell-load-defgroups directory
)
92 (if (file-exists-p elc-file
) (delete-file elc-file
)))))
94 (load "esh-groups" t t
)
98 (defcustom eshell-module-unload-hook
99 '(eshell-unload-extension-modules)
100 "*A hook run when `eshell-module' is unloaded."
102 :group
'eshell-module
)
104 (defcustom eshell-modules-list
118 "*A list of optional add-on modules to be loaded by Eshell.
119 Changes will only take effect in future Eshell buffers."
121 (list 'set
':tag
"Supported modules")
125 (let ((modsym (intern modname
)))
127 ':tag
(format "%s -- %s" modname
128 (get modsym
'custom-tag
))
129 ':link
(caar (get modsym
'custom-links
))
130 ':doc
(concat "\n" (get modsym
'group-documentation
)
133 (sort (mapcar 'symbol-name
134 (eshell-subgroups 'eshell-module
))
136 '((repeat :inline t
:tag
"Other modules" symbol
)))
137 :group
'eshell-module
)
141 (defsubst eshell-using-module
(module)
142 "Return non-nil if a certain Eshell MODULE is in use.
143 The MODULE should be a symbol corresponding to that module's
144 customization group. Example: `eshell-cmpl' for that module."
145 (memq module eshell-modules-list
))
147 (defun eshell-unload-extension-modules ()
148 "Unload any memory resident extension modules."
149 (eshell-for module
(eshell-subgroups 'eshell-module
)
150 (if (featurep module
)
152 (message "Unloading %s..." (symbol-name module
))
153 (unload-feature module
)
154 (message "Unloading %s...done" (symbol-name module
))))))
156 ;;; esh-module.el ends here