Mercurial > emacs
annotate lisp/eshell/esh-module.el @ 68192:2cfa649fa39d
* mh-customize.el (mh-index): Rename group to mh-search and sort group
definition and options accordingly.
(mh-index-program): Rename to mh-search-program.
(mh-kill-folder-suppress-prompt-hooks): Rename mh-index-p to
mh-search-p.
(mh-search-mode-hook): Change group from mh-index to mh-search.
(mh-index-folder): Rename to mh-search-folder. Change group from
mh-index to mh-search.
* mh-e.el (mh-folder-font-lock-keywords): Rename mh-index-folder to
mh-search-folder.
* mh-search.el (mh-indexer) Rename to mh-searcher. The commands pick
and grep are searchers too but aren't indexed.
(mh-index-execute-search-function): Rename to mh-search-function.
(mh-index-next-result-function): Rename to
mh-search-next-result-function.
(mh-index-regexp-builder): Rename to mh-search-regexp-builder.
(mh-search): Since redo-search-flag defaults to nil and is of lesser
importance, make it an optional argument and place it after the folder
and search-regexp arguments. Sync docstring with manual.
(mh-search-mode-map): Autoload so that keys are shown in help even
before mh-search is loaded.
(mh-search-mode): Sync docstring with manual.
(mh-index-do-search): Rename argument indexer to searcher. Sync
docstring with manual.
(mh-pick-do-search): Sync docstring with manual.
(mh-index-p): Rename to mh-search-p.
(mh-indexer-choices): Rename to mh-search-choices.
(mh-index-choose): Rename to mh-search-choose. Rename argument indexer
to searcher.
(mh-swish++-execute-search, mh-swish-execute-search)
(mh-mairix-execute-search, mh-namazu-execute-search): Drop "and read
the results" from docstring since these functions don't.
(mh-pick-execute-search, mh-grep-execute-search): Sync docstring with
manual.
(mh-index-generate-pretty-name): Prune -search from string so that
folder names for pick searches are the same as those of other
searches.
author | Bill Wohler <wohler@newt.com> |
---|---|
date | Sat, 14 Jan 2006 21:17:37 +0000 |
parents | 34bd8e434dd7 |
children | 067115a6e738 edf295560b5a |
rev | line source |
---|---|
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
33020
diff
changeset
|
1 ;;; esh-module.el --- Eshell modules |
29876 | 2 |
64701
34bd8e434dd7
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64085
diff
changeset
|
3 ;; Copyright (C) 1999, 2000, 2002, 2003, 2004, |
34bd8e434dd7
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64085
diff
changeset
|
4 ;; 2005 Free Software Foundation, Inc. |
29876 | 5 |
29898
8f071fd1161d
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29876
diff
changeset
|
6 ;; Author: John Wiegley <johnw@gnu.org> |
8f071fd1161d
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29876
diff
changeset
|
7 ;; Keywords: processes |
8f071fd1161d
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29876
diff
changeset
|
8 |
29876 | 9 ;; This file is part of GNU Emacs. |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64085 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
29876 | 25 |
26 (provide 'esh-module) | |
27 | |
33020 | 28 (eval-when-compile |
29 (require 'esh-maint) | |
30 (require 'cl)) | |
29876 | 31 |
32 (defgroup eshell-module nil | |
33 "The `eshell-module' group is for Eshell extension modules, which | |
34 provide optional behavior which the user can enable or disable by | |
35 customizing the variable `eshell-modules-list'." | |
36 :tag "Extension modules" | |
37 :group 'eshell) | |
38 | |
39 ;;; Commentary: | |
40 | |
41 (require 'esh-util) | |
42 | |
43 (defun eshell-load-defgroups (&optional directory) | |
44 "Load `defgroup' statements from Eshell's module files." | |
56027
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
45 (let ((vc-handled-backends nil)) ; avoid VC fucking things up |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
46 (with-current-buffer |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
47 (find-file-noselect (expand-file-name "esh-groups.el" directory)) |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
48 (erase-buffer) |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
49 (insert ";;; do not modify this file; it is auto-generated -*- no-byte-compile: t -*-\n\n") |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
50 (let ((files (directory-files (or directory |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
51 (car command-line-args-left)) |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
52 nil "\\`em-.*\\.el\\'"))) |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
53 (while files |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
54 (message "Loading defgroup from `%s'" (car files)) |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
55 (let (defgroup) |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
56 (catch 'handled |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
57 (with-current-buffer (find-file-noselect (car files)) |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
58 (goto-char (point-min)) |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
59 (while t |
29876 | 60 (forward-sexp) |
56027
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
61 (if (eobp) (throw 'handled t)) |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
62 (backward-sexp) |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
63 (let ((begin (point)) |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
64 (defg (looking-at "(defgroup"))) |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
65 (forward-sexp) |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
66 (if defg |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
67 (setq defgroup (buffer-substring begin (point)))))))) |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
68 (if defgroup |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
69 (insert defgroup "\n\n"))) |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
70 (setq files (cdr files)))) |
a10d964838a7
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-397
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
71 (save-buffer)))) |
29876 | 72 |
73 ;; load the defgroup's for the standard extension modules, so that | |
74 ;; documentation can be provided when the user customize's | |
75 ;; `eshell-modules-list'. | |
76 (eval-when-compile | |
30141 | 77 (when (and (boundp 'byte-compile-current-file) |
78 byte-compile-current-file | |
31327
02375e0f6ea7
(eval-when-compile): Don't lose if esh-module.el's file name
Eli Zaretskii <eliz@gnu.org>
parents:
30141
diff
changeset
|
79 (or |
02375e0f6ea7
(eval-when-compile): Don't lose if esh-module.el's file name
Eli Zaretskii <eliz@gnu.org>
parents:
30141
diff
changeset
|
80 (equal (file-name-nondirectory byte-compile-current-file) |
02375e0f6ea7
(eval-when-compile): Don't lose if esh-module.el's file name
Eli Zaretskii <eliz@gnu.org>
parents:
30141
diff
changeset
|
81 "esh-module.el") |
02375e0f6ea7
(eval-when-compile): Don't lose if esh-module.el's file name
Eli Zaretskii <eliz@gnu.org>
parents:
30141
diff
changeset
|
82 ;; When eshell file names are expanded from a wildcard |
02375e0f6ea7
(eval-when-compile): Don't lose if esh-module.el's file name
Eli Zaretskii <eliz@gnu.org>
parents:
30141
diff
changeset
|
83 ;; or by reading the Eshell directory, e.g. when they |
02375e0f6ea7
(eval-when-compile): Don't lose if esh-module.el's file name
Eli Zaretskii <eliz@gnu.org>
parents:
30141
diff
changeset
|
84 ;; say "make recompile" in the lisp directory, Emacs on |
02375e0f6ea7
(eval-when-compile): Don't lose if esh-module.el's file name
Eli Zaretskii <eliz@gnu.org>
parents:
30141
diff
changeset
|
85 ;; MS-DOS sees a truncated name "esh-modu.el" instead of |
02375e0f6ea7
(eval-when-compile): Don't lose if esh-module.el's file name
Eli Zaretskii <eliz@gnu.org>
parents:
30141
diff
changeset
|
86 ;; "esh-module.el". |
02375e0f6ea7
(eval-when-compile): Don't lose if esh-module.el's file name
Eli Zaretskii <eliz@gnu.org>
parents:
30141
diff
changeset
|
87 (and (fboundp 'msdos-long-file-names) |
02375e0f6ea7
(eval-when-compile): Don't lose if esh-module.el's file name
Eli Zaretskii <eliz@gnu.org>
parents:
30141
diff
changeset
|
88 (null (msdos-long-file-names)) |
02375e0f6ea7
(eval-when-compile): Don't lose if esh-module.el's file name
Eli Zaretskii <eliz@gnu.org>
parents:
30141
diff
changeset
|
89 (equal (file-name-nondirectory byte-compile-current-file) |
02375e0f6ea7
(eval-when-compile): Don't lose if esh-module.el's file name
Eli Zaretskii <eliz@gnu.org>
parents:
30141
diff
changeset
|
90 "esh-modu.el")))) |
29876 | 91 (let* ((directory (file-name-directory byte-compile-current-file)) |
33020 | 92 (elc-file (expand-file-name "esh-groups.elc" directory))) |
29876 | 93 (eshell-load-defgroups directory) |
94 (if (file-exists-p elc-file) (delete-file elc-file))))) | |
95 | |
96 (load "esh-groups" t t) | |
97 | |
98 ;;; User Variables: | |
99 | |
100 (defcustom eshell-module-unload-hook | |
101 '(eshell-unload-extension-modules) | |
102 "*A hook run when `eshell-module' is unloaded." | |
103 :type 'hook | |
104 :group 'eshell-module) | |
105 | |
106 (defcustom eshell-modules-list | |
107 '(eshell-alias | |
108 eshell-banner | |
109 eshell-basic | |
110 eshell-cmpl | |
111 eshell-dirs | |
112 eshell-glob | |
113 eshell-hist | |
114 eshell-ls | |
115 eshell-pred | |
116 eshell-prompt | |
117 eshell-script | |
118 eshell-term | |
119 eshell-unix) | |
120 "*A list of optional add-on modules to be loaded by Eshell. | |
121 Changes will only take effect in future Eshell buffers." | |
122 :type (append | |
123 (list 'set ':tag "Supported modules") | |
124 (mapcar | |
125 (function | |
126 (lambda (modname) | |
127 (let ((modsym (intern modname))) | |
128 (list 'const | |
129 ':tag (format "%s -- %s" modname | |
130 (get modsym 'custom-tag)) | |
131 ':link (caar (get modsym 'custom-links)) | |
132 ':doc (concat "\n" (get modsym 'group-documentation) | |
133 "\n ") | |
134 modsym)))) | |
135 (sort (mapcar 'symbol-name | |
136 (eshell-subgroups 'eshell-module)) | |
137 'string-lessp)) | |
138 '((repeat :inline t :tag "Other modules" symbol))) | |
139 :group 'eshell-module) | |
140 | |
141 ;;; Code: | |
142 | |
143 (defsubst eshell-using-module (module) | |
144 "Return non-nil if a certain Eshell MODULE is in use. | |
145 The MODULE should be a symbol corresponding to that module's | |
146 customization group. Example: `eshell-cmpl' for that module." | |
147 (memq module eshell-modules-list)) | |
148 | |
149 (defun eshell-unload-extension-modules () | |
150 "Unload any memory resident extension modules." | |
151 (eshell-for module (eshell-subgroups 'eshell-module) | |
152 (if (featurep module) | |
153 (ignore-errors | |
154 (message "Unloading %s..." (symbol-name module)) | |
155 (unload-feature module) | |
156 (message "Unloading %s...done" (symbol-name module)))))) | |
157 | |
52401 | 158 ;;; arch-tag: 97a3fa16-9d08-40e6-bc2c-36bd70986507 |
29876 | 159 ;;; esh-module.el ends here |