Mercurial > emacs
annotate lisp/eshell/em-alias.el @ 92836:e4347538b00b
(generated-autoload-file): Don't set, instead use different values of
generate-autoload-cookie plus Makefile rules to allow for a mixture of
internal calendar autoloads and normal autoloads.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Thu, 13 Mar 2008 05:46:15 +0000 |
parents | 107ccd98fa12 |
children | 606f2d163a64 1e3a407766b9 |
rev | line source |
---|---|
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37322
diff
changeset
|
1 ;;; em-alias.el --- creation and management of command aliases |
29876 | 2 |
74509 | 3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, |
79707 | 4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
29876 | 5 |
32526 | 6 ;; Author: John Wiegley <johnw@gnu.org> |
7 | |
29876 | 8 ;; This file is part of GNU Emacs. |
9 | |
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 | |
78220
a1e8300d3c55
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75346
diff
changeset
|
12 ;; the Free Software Foundation; either version 3, or (at your option) |
29876 | 13 ;; any later version. |
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 | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64085 | 22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
23 ;; Boston, MA 02110-1301, USA. | |
29876 | 24 |
25 ;;; Commentary: | |
26 | |
27 ;; Command aliases greatly simplify the definition of new commands. | |
28 ;; They exist as an alternative to alias functions, which are | |
29 ;; otherwise quite superior, being more flexible and natural to the | |
30 ;; Emacs Lisp environment (if somewhat trickier to define; [Alias | |
31 ;; functions]). | |
32 ;; | |
33 ;;;_* Creating aliases | |
34 ;; | |
35 ;; The user interface is simple: type 'alias' followed by the command | |
36 ;; name followed by the definition. Argument references are made | |
37 ;; using '$1', '$2', etc., or '$*'. For example: | |
38 ;; | |
39 ;; alias ll 'ls -l $*' | |
40 ;; | |
41 ;; This will cause the command 'll NEWS' to be replaced by 'ls -l | |
42 ;; NEWS'. This is then passed back to the command parser for | |
43 ;; reparsing.{Only the command text specified in the alias definition | |
44 ;; will be reparsed. Argument references (such as '$*') are handled | |
45 ;; using variable values, which means that the expansion will not be | |
46 ;; reparsed, but used directly.} | |
47 ;; | |
48 ;; To delete an alias, specify its name without a definition: | |
49 ;; | |
50 ;; alias ll | |
51 ;; | |
52 ;; Aliases are written to disk immediately after being defined or | |
53 ;; deleted. The filename in which they are kept is defined by the | |
87062
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
54 ;; variable eshell-aliases-file. |
29876 | 55 |
56 ;; The format of this file is quite basic. It specifies the alias | |
57 ;; definitions in almost exactly the same way that the user entered | |
58 ;; them, minus any argument quoting (since interpolation is not done | |
59 ;; when the file is read). Hence, it is possible to add new aliases | |
60 ;; to the alias file directly, using a text editor rather than the | |
61 ;; `alias' command. Or, this method can be used for editing aliases | |
62 ;; that have already defined. | |
63 ;; | |
64 ;; Here is an example of a few different aliases, and they would | |
65 ;; appear in the aliases file: | |
66 ;; | |
67 ;; alias clean rm -fr **/.#*~ | |
68 ;; alias commit cvs commit -m changes $* | |
69 ;; alias ll ls -l $* | |
70 ;; alias info (info) | |
71 ;; alias reindex glimpseindex -o ~/Mail | |
72 ;; alias compact for i in ~/Mail/**/*~*.bz2(Lk+50) { bzip2 -9v $i } | |
73 ;; | |
74 ;;;_* Auto-correction of bad commands | |
75 ;; | |
76 ;; When a user enters the same unknown command many times during a | |
77 ;; session, it is likely that they are experiencing a spelling | |
78 ;; difficulty associated with a certain command. To combat this, | |
79 ;; Eshell will offer to automatically define an alias for that | |
80 ;; mispelled command, once a given tolerance threshold has been | |
81 ;; reached. | |
82 | |
87062
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
83 ;; Whenever the same bad command name is encountered |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
84 ;; `eshell-bad-command-tolerance' times, the user will be prompted in |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
85 ;; the minibuffer to provide an alias name. An alias definition will |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
86 ;; then be created which will result in an equal call to the correct |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
87 ;; name. In this way, Eshell gradually learns about the commands that |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
88 ;; the user mistypes frequently, and will automatically correct them! |
29876 | 89 ;; |
90 ;; Note that a '$*' is automatically appended at the end of the alias | |
91 ;; definition, so that entering it is unnecessary when specifying the | |
92 ;; corrected command name. | |
93 | |
94 ;;; Code: | |
95 | |
87062
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
96 (eval-when-compile |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
97 (require 'esh-util)) |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
98 (require 'eshell) |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
99 |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
100 (defgroup eshell-alias nil |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
101 "Command aliases allow for easy definition of alternate commands." |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
102 :tag "Command aliases" |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
103 ;; :link '(info-link "(eshell)Command aliases") |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
104 :group 'eshell-module) |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
105 |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
106 (defcustom eshell-aliases-file (concat eshell-directory-name "alias") |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
107 "*The file in which aliases are kept. |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
108 Whenever an alias is defined by the user, using the `alias' command, |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
109 it will be written to this file. Thus, alias definitions (and |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
110 deletions) are always permanent. This approach was chosen for the |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
111 sake of simplicity, since that's pretty much the only benefit to be |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
112 gained by using this module." |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
113 :type 'file |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
114 :group 'eshell-alias) |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
115 |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
116 (defcustom eshell-bad-command-tolerance 3 |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
117 "*The number of failed commands to ignore before creating an alias." |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
118 :type 'integer |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
119 ;; :link '(custom-manual "(eshell)Auto-correction of bad commands") |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
120 :group 'eshell-alias) |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
121 |
29876 | 122 (defcustom eshell-alias-load-hook '(eshell-alias-initialize) |
123 "*A hook that gets run when `eshell-alias' is loaded." | |
124 :type 'hook | |
125 :group 'eshell-alias) | |
126 | |
127 (defvar eshell-command-aliases-list nil | |
128 "A list of command aliases currently defined by the user. | |
129 Each element of this alias is a list of the form: | |
130 | |
131 (NAME DEFINITION) | |
132 | |
133 Where NAME is the textual name of the alias, and DEFINITION is the | |
134 command string to replace that command with. | |
135 | |
136 Note: this list should not be modified in your '.emacs' file. Rather, | |
137 any desired alias definitions should be declared using the `alias' | |
138 command, which will automatically write them to the file named by | |
139 `eshell-aliases-file'.") | |
140 | |
141 (put 'eshell-command-aliases-list 'risky-local-variable t) | |
142 | |
143 (defvar eshell-failed-commands-alist nil | |
144 "An alist of command name failures.") | |
145 | |
146 (defun eshell-alias-initialize () | |
147 "Initialize the alias handling code." | |
148 (make-local-variable 'eshell-failed-commands-alist) | |
149 (add-hook 'eshell-alternate-command-hook 'eshell-fix-bad-commands t t) | |
150 (eshell-read-aliases-list) | |
33020 | 151 (add-hook 'eshell-named-command-hook 'eshell-maybe-replace-by-alias t t) |
152 (make-local-variable 'eshell-complex-commands) | |
153 (add-to-list 'eshell-complex-commands 'eshell-command-aliased-p)) | |
154 | |
155 (defun eshell-command-aliased-p (name) | |
37322
d27be94466e0
(eshell-command-aliased-p): `assoc' was required where `member' was
John Wiegley <johnw@newartisans.com>
parents:
33020
diff
changeset
|
156 (assoc name eshell-command-aliases-list)) |
29876 | 157 |
158 (defun eshell/alias (&optional alias &rest definition) | |
159 "Define an ALIAS in the user's alias list using DEFINITION." | |
160 (if (not alias) | |
161 (eshell-for alias eshell-command-aliases-list | |
162 (eshell-print (apply 'format "alias %s %s\n" alias))) | |
163 (if (not definition) | |
164 (setq eshell-command-aliases-list | |
165 (delq (assoc alias eshell-command-aliases-list) | |
166 eshell-command-aliases-list)) | |
167 (and (stringp definition) | |
168 (set-text-properties 0 (length definition) nil definition)) | |
169 (let ((def (assoc alias eshell-command-aliases-list)) | |
170 (alias-def (list alias | |
171 (eshell-flatten-and-stringify definition)))) | |
172 (if def | |
173 (setq eshell-command-aliases-list | |
174 (delq def eshell-command-aliases-list))) | |
175 (setq eshell-command-aliases-list | |
176 (cons alias-def eshell-command-aliases-list)))) | |
177 (eshell-write-aliases-list)) | |
178 nil) | |
179 | |
87062
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
180 (defvar pcomplete-stub) |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
181 (autoload 'pcomplete-here "pcomplete") |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
182 |
29876 | 183 (defun pcomplete/eshell-mode/alias () |
184 "Completion function for Eshell's `alias' command." | |
185 (pcomplete-here (eshell-alias-completions pcomplete-stub))) | |
186 | |
187 (defun eshell-read-aliases-list () | |
188 "Read in an aliases list from `eshell-aliases-file'." | |
189 (let ((file eshell-aliases-file)) | |
190 (when (file-readable-p file) | |
191 (setq eshell-command-aliases-list | |
192 (with-temp-buffer | |
193 (let (eshell-command-aliases-list) | |
194 (insert-file-contents file) | |
195 (while (not (eobp)) | |
196 (if (re-search-forward | |
197 "^alias\\s-+\\(\\S-+\\)\\s-+\\(.+\\)") | |
198 (setq eshell-command-aliases-list | |
199 (cons (list (match-string 1) | |
200 (match-string 2)) | |
201 eshell-command-aliases-list))) | |
202 (forward-line 1)) | |
203 eshell-command-aliases-list)))))) | |
204 | |
205 (defun eshell-write-aliases-list () | |
206 "Write out the current aliases into `eshell-aliases-file'." | |
207 (if (file-writable-p (file-name-directory eshell-aliases-file)) | |
208 (let ((eshell-current-handles | |
209 (eshell-create-handles eshell-aliases-file 'overwrite))) | |
210 (eshell/alias) | |
211 (eshell-close-handles 0)))) | |
212 | |
213 (defsubst eshell-lookup-alias (name) | |
214 "Check whether NAME is aliased. Return the alias if there is one." | |
215 (assoc name eshell-command-aliases-list)) | |
216 | |
217 (defvar eshell-prevent-alias-expansion nil) | |
218 | |
219 (defun eshell-maybe-replace-by-alias (command args) | |
30270
1ba9e2802a23
(eshell-maybe-replace-by-alias): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
29934
diff
changeset
|
220 "If COMMAND has an alias definition, call that instead using ARGS." |
29876 | 221 (unless (and eshell-prevent-alias-expansion |
222 (member command eshell-prevent-alias-expansion)) | |
223 (let ((alias (eshell-lookup-alias command))) | |
224 (if alias | |
225 (throw 'eshell-replace-command | |
226 (list | |
227 'let | |
228 (list | |
229 (list 'eshell-command-name | |
230 (list 'quote eshell-last-command-name)) | |
231 (list 'eshell-command-arguments | |
232 (list 'quote eshell-last-arguments)) | |
233 (list 'eshell-prevent-alias-expansion | |
234 (list 'quote | |
235 (cons command | |
236 eshell-prevent-alias-expansion)))) | |
237 (eshell-parse-command (nth 1 alias)))))))) | |
238 | |
239 (defun eshell-alias-completions (name) | |
240 "Find all possible completions for NAME. | |
241 These are all the command aliases which begin with NAME." | |
242 (let (completions) | |
243 (eshell-for alias eshell-command-aliases-list | |
244 (if (string-match (concat "^" name) (car alias)) | |
245 (setq completions (cons (car alias) completions)))) | |
246 completions)) | |
247 | |
248 (defun eshell-fix-bad-commands (name) | |
249 "If the user repeatedly a bad command NAME, make an alias for them." | |
250 (ignore | |
251 (unless (file-name-directory name) | |
252 (let ((entry (assoc name eshell-failed-commands-alist))) | |
253 (if (not entry) | |
254 (setq eshell-failed-commands-alist | |
255 (cons (cons name 1) eshell-failed-commands-alist)) | |
256 (if (< (cdr entry) eshell-bad-command-tolerance) | |
257 (setcdr entry (1+ (cdr entry))) | |
258 (let ((alias (concat | |
259 (read-string | |
260 (format "Define alias for \"%s\": " name)) | |
261 " $*"))) | |
262 (eshell/alias name alias) | |
263 (throw 'eshell-replace-command | |
264 (list | |
265 'let | |
266 (list | |
267 (list 'eshell-command-name | |
268 (list 'quote name)) | |
269 (list 'eshell-command-arguments | |
270 (list 'quote eshell-last-arguments)) | |
271 (list 'eshell-prevent-alias-expansion | |
272 (list 'quote | |
273 (cons name | |
274 eshell-prevent-alias-expansion)))) | |
275 (eshell-parse-command alias)))))))))) | |
276 | |
87062
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
277 (provide 'em-alias) |
dc33075c168e
Require individual files if needed when compiling, rather than
Glenn Morris <rgm@gnu.org>
parents:
78220
diff
changeset
|
278 |
52401 | 279 ;;; arch-tag: 8b018fc1-4e07-4ccc-aa73-c0a1ba361f82 |
29876 | 280 ;;; em-alias.el ends here |