1 ;;; esh-module.el --- Eshell modules
3 ;; Copyright (C) 1999, 2000, 2004 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."
44 (let ((vc-handled-backends nil
)) ; avoid VC fucking things up
46 (find-file-noselect (expand-file-name "esh-groups.el" directory
))
48 (insert ";;; do not modify this file; it is auto-generated -*- no-byte-compile: t -*-\n\n")
49 (let ((files (directory-files (or directory
50 (car command-line-args-left
))
51 nil
"\\`em-.*\\.el\\'")))
53 (message "Loading defgroup from `%s'" (car files
))
56 (with-current-buffer (find-file-noselect (car files
))
57 (goto-char (point-min))
60 (if (eobp) (throw 'handled t
))
63 (defg (looking-at "(defgroup")))
66 (setq defgroup
(buffer-substring begin
(point))))))))
68 (insert defgroup
"\n\n")))
69 (setq files
(cdr files
))))
72 ;; load the defgroup's for the standard extension modules, so that
73 ;; documentation can be provided when the user customize's
74 ;; `eshell-modules-list'.
76 (when (and (boundp 'byte-compile-current-file
)
77 byte-compile-current-file
79 (equal (file-name-nondirectory byte-compile-current-file
)
81 ;; When eshell file names are expanded from a wildcard
82 ;; or by reading the Eshell directory, e.g. when they
83 ;; say "make recompile" in the lisp directory, Emacs on
84 ;; MS-DOS sees a truncated name "esh-modu.el" instead of
86 (and (fboundp 'msdos-long-file-names
)
87 (null (msdos-long-file-names))
88 (equal (file-name-nondirectory byte-compile-current-file
)
90 (let* ((directory (file-name-directory byte-compile-current-file
))
91 (elc-file (expand-file-name "esh-groups.elc" directory
)))
92 (eshell-load-defgroups directory
)
93 (if (file-exists-p elc-file
) (delete-file elc-file
)))))
95 (load "esh-groups" t t
)
99 (defcustom eshell-module-unload-hook
100 '(eshell-unload-extension-modules)
101 "*A hook run when `eshell-module' is unloaded."
103 :group
'eshell-module
)
105 (defcustom eshell-modules-list
119 "*A list of optional add-on modules to be loaded by Eshell.
120 Changes will only take effect in future Eshell buffers."
122 (list 'set
':tag
"Supported modules")
126 (let ((modsym (intern modname
)))
128 ':tag
(format "%s -- %s" modname
129 (get modsym
'custom-tag
))
130 ':link
(caar (get modsym
'custom-links
))
131 ':doc
(concat "\n" (get modsym
'group-documentation
)
134 (sort (mapcar 'symbol-name
135 (eshell-subgroups 'eshell-module
))
137 '((repeat :inline t
:tag
"Other modules" symbol
)))
138 :group
'eshell-module
)
142 (defsubst eshell-using-module
(module)
143 "Return non-nil if a certain Eshell MODULE is in use.
144 The MODULE should be a symbol corresponding to that module's
145 customization group. Example: `eshell-cmpl' for that module."
146 (memq module eshell-modules-list
))
148 (defun eshell-unload-extension-modules ()
149 "Unload any memory resident extension modules."
150 (eshell-for module
(eshell-subgroups 'eshell-module
)
151 (if (featurep module
)
153 (message "Unloading %s..." (symbol-name module
))
154 (unload-feature module
)
155 (message "Unloading %s...done" (symbol-name module
))))))
157 ;;; arch-tag: 97a3fa16-9d08-40e6-bc2c-36bd70986507
158 ;;; esh-module.el ends here