Mercurial > emacs
annotate lisp/eshell/eshell.el @ 80260:bcd82d955672
*** empty log message ***
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Sat, 01 Mar 2008 13:58:59 +0000 |
parents | 48c4bb2b7d11 |
children | 107ccd98fa12 |
rev | line source |
---|---|
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
38120
diff
changeset
|
1 ;;; eshell.el --- the Emacs command shell |
29876 | 2 |
74509 | 3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, |
79707 | 4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
29876 | 5 |
6 ;; Author: John Wiegley <johnw@gnu.org> | |
38120
64002802a902
Added a version string.
John Wiegley <johnw@newartisans.com>
parents:
38119
diff
changeset
|
7 ;; Version: 2.4.2 |
29876 | 8 ;; Keywords: processes |
9 | |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; 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
|
14 ;; the Free Software Foundation; either version 3, or (at your option) |
29876 | 15 ;; any later version. |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64085 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
29876 | 26 |
27 (provide 'eshell) | |
28 | |
29 (eval-when-compile (require 'esh-maint)) | |
30 | |
31 (defgroup eshell nil | |
32 "Eshell is a command shell implemented entirely in Emacs Lisp. It | |
33 invokes no external processes beyond those requested by the user. It | |
34 is intended to be a functional replacement for command shells such as | |
35 bash, zsh, rc, 4dos; since Emacs itself is capable of handling most of | |
36 the tasks accomplished by such tools." | |
37 :tag "The Emacs shell" | |
54564
9915b3ca4e0f
(eshell): Fix broken info-link.
Juri Linkov <juri@jurta.org>
parents:
52401
diff
changeset
|
38 :link '(info-link "(eshell)Top") |
31949
a511ba2b1746
(eshell) <defgroup>: Add :version.
Dave Love <fx@gnu.org>
parents:
30271
diff
changeset
|
39 :version "21.1" |
29876 | 40 :group 'applications) |
41 | |
42 ;;; Commentary: | |
43 | |
44 ;;;_* What does Eshell offer you? | |
45 ;; | |
46 ;; Despite the sheer fact that running an Emacs shell can be fun, here | |
47 ;; are a few of the unique features offered by Eshell: | |
48 ;; | |
49 ;; @ Integration with the Emacs Lisp programming environment | |
50 ;; | |
51 ;; @ A high degree of configurability | |
52 ;; | |
53 ;; @ The ability to have the same shell on every system Emacs has been | |
54 ;; ported to. Since Eshell imposes no external requirements, and | |
55 ;; relies upon only the Lisp functions exposed by Emacs, it is quite | |
56 ;; operating system independent. Several of the common UNIX | |
57 ;; commands, such as ls, mv, rm, ln, etc., have been implemented in | |
58 ;; Lisp in order to provide a more consistent work environment. | |
59 ;; | |
60 ;; For those who might be using an older version of Eshell, version | |
61 ;; 2.1 represents an entirely new, module-based architecture. It | |
62 ;; supports most of the features offered by modern shells. Here is a | |
63 ;; brief list of some of its more visible features: | |
64 ;; | |
65 ;; @ Command argument completion (tcsh, zsh) | |
66 ;; @ Input history management (bash) | |
67 ;; @ Intelligent output scrolling | |
50937
dfc70cb4fd02
Fix typo in comment.
Juanma Barranquero <lekktu@gmail.com>
parents:
46705
diff
changeset
|
68 ;; @ Pseudo-devices (such as "/dev/clip" for copying to the clipboard) |
29876 | 69 ;; @ Extended globbing (zsh) |
70 ;; @ Argument and globbing predication (zsh) | |
71 ;; @ I/O redirection to buffers, files, symbols, processes, etc. | |
72 ;; @ Many niceties otherwise seen only in 4DOS | |
73 ;; @ Alias functions, both Lisp and Eshell-syntax | |
74 ;; @ Piping, sequenced commands, background jobs, etc... | |
75 ;; | |
76 ;;;_* Eshell is free software | |
77 ;; | |
78 ;; Eshell is free software; you can redistribute it and/or modify it | |
79 ;; 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
|
80 ;; the Free Software Foundation; either version 3, or (at your option) |
29876 | 81 ;; any later version. |
82 ;; | |
83 ;; This program is distributed in the hope that it will be useful, but | |
84 ;; WITHOUT ANY WARRANTY; without even the implied warranty of | |
85 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
86 ;; General Public License for more details. | |
87 ;; | |
88 ;; You should have received a copy of the GNU General Public License | |
89 ;; along with Eshell; see the file COPYING. If not, write to the Free | |
64092 | 90 ;; Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
91 ;; MA 02110-1301, USA. | |
29876 | 92 ;; |
93 ;;;_* How to begin | |
94 ;; | |
95 ;; To start using Eshell, add the following to your .emacs file: | |
96 ;; | |
97 ;; (load "eshell-auto") | |
98 ;; | |
99 ;; This will define all of the necessary autoloads. | |
100 ;; | |
101 ;; Now type `M-x eshell'. See the INSTALL file for full installation | |
102 ;; instructions. | |
103 ;; | |
104 ;;;_* Philosophy | |
105 ;; | |
106 ;; A shell is a layer which metaphorically surrounds the kernel, or | |
107 ;; heart of an operating system. This kernel can be seen as an engine | |
108 ;; of pure functionality, waiting to serve, while the user programs | |
109 ;; take advantage of that functionality to accomplish their purpose. | |
110 ;; | |
111 ;; The shell's role is to make that functionality accessible to the | |
112 ;; user in an unformed state. Very roughly, it associates kernel | |
113 ;; functionality with textual commands, allowing the user to interact | |
114 ;; with the operating system via linguistic constructs. Process | |
115 ;; invocation is perhaps the most significant form this takes, using | |
116 ;; the kernel's `fork' and `exec' functions. | |
117 ;; | |
118 ;; Other programs also interact with the functionality of the kernel, | |
119 ;; but these user applications typically offer a specific range of | |
120 ;; functionality, and thus are not classed as "shells" proper. | |
121 ;; (What they lose in quiddity, they gain in rigidity). | |
122 ;; | |
123 ;; Emacs is also a user application, but it does make the | |
124 ;; functionality of the kernel accessible through an interpreted | |
125 ;; language -- namely, Lisp. For that reason, there is little | |
126 ;; preventing Emacs from serving the same role as a modern shell. It | |
127 ;; too can manipulate the kernel in an unpredetermined way to cause | |
128 ;; system changes. All it's missing is the shell-ish linguistic | |
129 ;; model. | |
130 ;; | |
131 ;; Enter Eshell. Eshell translates "shell-like" syntax into Lisp | |
132 ;; in order to exercise the kernel in the same manner as typical | |
133 ;; system shells. There is a fundamental difference here, however, | |
134 ;; although it may seem subtle at first... | |
135 ;; | |
136 ;; Shells like csh and Bourne shell were written several decades ago, | |
137 ;; in different times, under more restrictive circumstances. This | |
138 ;; confined perspective shows itself in the paradigm used by nearly | |
139 ;; all command-line shells since. They are linear in conception, byte | |
140 ;; stream-based, sequential, and confined to movement within a single | |
141 ;; host machine. | |
142 ;; | |
143 ;; Emacs, on the other hand, is more than just a limited translator | |
144 ;; that can invoke subprocesses and redirect file handles. It also | |
145 ;; manages character buffers, windowing frames, network connections, | |
146 ;; registers, bookmarks, processes, etc. In other words, it's a very | |
147 ;; multi-dimensional environment, within which eshell emulates a highly | |
148 ;; linear methodology. | |
149 ;; | |
150 ;; Taking a moment, let's look at how this could affect the future of | |
151 ;; a shell allowed to develop in such a wider field of play: | |
152 ;; | |
153 ;; @ There is no reason why directory movement should be linear, and | |
154 ;; confined to a single file-system. Emacs, through w3 and ange-ftp, | |
155 ;; has access to the entire Web. Why not allow a user to cd to | |
156 ;; multiple directories simultaneously, for example? It might make | |
157 ;; some tasks easier, such as diff'ing files separated by very long | |
158 ;; pathnames. | |
159 ;; | |
160 ;; @ Data sources are available from anywhere Emacs can derive | |
161 ;; information from: not just from files or the output of other | |
162 ;; processes. | |
163 ;; | |
164 ;; @ Multiple shell invocations all share the same environment -- even | |
165 ;; the same process list! It would be possible to have "process | |
166 ;; views", so that one buffer is watching standard output, another | |
167 ;; standard error, and another the result of standard output grep'd | |
168 ;; through a regular expression... | |
169 ;; | |
170 ;; @ It is not necessary to "leave" the shell, losing all input and | |
171 ;; output history, environment variables, directory stack, etc. | |
172 ;; Emacs could save the contents of your eshell environment, and | |
173 ;; restore all of it (or at least as much as possible) each time you | |
174 ;; restart. This could occur automatically, without requiring | |
175 ;; complex initialization scripts. | |
176 ;; | |
177 ;; @ Typos occur all of the time; many of them are repeats of common | |
178 ;; errors, such as 'dri' for `dir'. Since executing non-existent | |
179 ;; programs is rarely the intention of the user, eshell could prompt | |
180 ;; for the replacement string, and then record that in a database of | |
181 ;; known misspellings. (Note: The typo at the beginning of this | |
182 ;; paragraph wasn't discovered until two months after I wrote the | |
183 ;; text; it was not intentional). | |
184 ;; | |
185 ;; @ Emacs' register and bookmarking facilities can be used for | |
186 ;; remembering where you've been, and what you've seen -- to varying | |
187 ;; levels of persistence. They could perhaps even be tied to | |
188 ;; specific "moments" during eshell execution, which would include | |
189 ;; the environment at that time, as well as other variables. | |
190 ;; Although this would require functionality orthogonal to Emacs' | |
191 ;; own bookmarking facilities, the interface used could be made to | |
192 ;; operate very similarly. | |
193 ;; | |
194 ;; This presents a brief idea of what the fuller dimensionality of an | |
195 ;; Emacs shell could offer. It's not just the language of a shell | |
196 ;; that determines how it's used, but also the Weltanschauung | |
197 ;; underlying its design -- and which is felt behind even the smallest | |
198 ;; feature. I would hope the freedom provided by using Emacs as a | |
199 ;; parent environment will invite rich ideas from others. It | |
200 ;; certainly feels as though all I've done so far is to tie down the | |
201 ;; horse, so to speak, so that he will run at a man's pace. | |
202 ;; | |
203 ;;;_* Influences | |
204 ;; | |
205 ;; The author of Eshell has been a long-time user of the following | |
206 ;; shells, all of which contributed to Eshell's design: | |
207 ;; | |
208 ;; @ rc | |
209 ;; @ bash | |
210 ;; @ zsh | |
211 ;; @ sh | |
212 ;; @ 4nt | |
213 ;; @ csh | |
214 | |
38119
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
215 ;;;_* Speeding up load time |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
216 ;; |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
217 ;; If you find that Eshell loads too slowly, there is something you |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
218 ;; can do to speed it up. |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
219 ;; |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
220 ;; Create a file, named /tmp/elc, containing this filelist: |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
221 ;; |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
222 ;; esh-util.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
223 ;; eshell.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
224 ;; esh-module.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
225 ;; esh-var.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
226 ;; esh-proc.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
227 ;; esh-arg.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
228 ;; esh-io.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
229 ;; esh-ext.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
230 ;; esh-cmd.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
231 ;; esh-mode.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
232 ;; esh-opt.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
233 ;; em-alias.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
234 ;; em-banner.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
235 ;; em-basic.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
236 ;; em-cmpl.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
237 ;; em-dirs.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
238 ;; em-pred.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
239 ;; em-glob.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
240 ;; em-hist.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
241 ;; em-ls.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
242 ;; em-prompt.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
243 ;; em-rebind.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
244 ;; em-script.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
245 ;; em-smart.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
246 ;; em-term.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
247 ;; em-unix.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
248 ;; em-xtra.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
249 ;; |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
250 ;; The order is very important. Remove from the filelist any features |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
251 ;; you don't use. These all begin with "em-". If you don't use |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
252 ;; Eshell's key rebinding module, you can remove "em-rebind.elc" from |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
253 ;; the filelist. The modules you are currently using are listed in |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
254 ;; `eshell-modules-list'. |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
255 ;; |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
256 ;; Now, concatenating all of the above mentioned .elc files, in that |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
257 ;; order, to another file. Here is how to do this on UNIX: |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
258 ;; |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
259 ;; cat `cat /tmp/elc` > tmp.elc ; mv tmp.elc eshell.elc |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
260 ;; |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
261 ;; Now your eshell.elc file contains all of the .elc files that make |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
262 ;; up Eshell, in the right load order. When you next load Eshell, it |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
263 ;; will only have to read in this one file, which will greatly speed |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
264 ;; things up. |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
265 |
29876 | 266 ;;;_* User Options |
267 ;; | |
268 ;; The following user options modify the behavior of Eshell overall. | |
269 | |
38119
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
270 (unless (featurep 'esh-util) |
9c0099738383
Don't load in esh-util if it's already loaded. Also, added a comment
John Wiegley <johnw@newartisans.com>
parents:
37436
diff
changeset
|
271 (load "esh-util" nil t)) |
29876 | 272 |
273 (defsubst eshell-add-to-window-buffer-names () | |
274 "Add `eshell-buffer-name' to `same-window-buffer-names'." | |
275 (add-to-list 'same-window-buffer-names eshell-buffer-name)) | |
276 | |
277 (defsubst eshell-remove-from-window-buffer-names () | |
278 "Remove `eshell-buffer-name' from `same-window-buffer-names'." | |
279 (setq same-window-buffer-names | |
280 (delete eshell-buffer-name same-window-buffer-names))) | |
281 | |
282 (defcustom eshell-load-hook nil | |
283 "*A hook run once Eshell has been loaded." | |
284 :type 'hook | |
285 :group 'eshell) | |
286 | |
287 (defcustom eshell-unload-hook | |
288 '(eshell-remove-from-window-buffer-names | |
289 eshell-unload-all-modules) | |
290 "*A hook run when Eshell is unloaded from memory." | |
291 :type 'hook | |
292 :group 'eshell) | |
293 | |
294 (defcustom eshell-buffer-name "*eshell*" | |
295 "*The basename used for Eshell buffers." | |
296 :set (lambda (symbol value) | |
297 ;; remove the old value of `eshell-buffer-name', if present | |
298 (if (boundp 'eshell-buffer-name) | |
299 (eshell-remove-from-window-buffer-names)) | |
300 (set symbol value) | |
301 ;; add the new value | |
302 (eshell-add-to-window-buffer-names) | |
303 value) | |
304 :type 'string | |
305 :group 'eshell) | |
306 | |
307 (eshell-deftest mode same-window-buffer-names | |
308 "`eshell-buffer-name' is a member of `same-window-buffer-names'" | |
309 (member eshell-buffer-name same-window-buffer-names)) | |
310 | |
30271
54ff6ef3d884
(eshell-directory-name): Run default directory
Eli Zaretskii <eliz@gnu.org>
parents:
29934
diff
changeset
|
311 (defcustom eshell-directory-name (convert-standard-filename "~/.eshell/") |
29876 | 312 "*The directory where Eshell control files should be kept." |
313 :type 'directory | |
314 :group 'eshell) | |
315 | |
316 (eshell-deftest mode eshell-directory-exists | |
317 "`eshell-directory-name' exists and is writable" | |
318 (file-writable-p eshell-directory-name)) | |
319 | |
320 (eshell-deftest mode eshell-directory-modes | |
321 "`eshell-directory-name' has correct access protections" | |
322 (or (eshell-under-windows-p) | |
323 (= (file-modes eshell-directory-name) | |
324 eshell-private-directory-modes))) | |
325 | |
326 ;;;_* Running Eshell | |
327 ;; | |
328 ;; There are only three commands used to invoke Eshell. The first two | |
329 ;; are intended for interactive use, while the third is meant for | |
330 ;; programmers. They are: | |
331 | |
332 ;;;###autoload | |
333 (defun eshell (&optional arg) | |
334 "Create an interactive Eshell buffer. | |
335 The buffer used for Eshell sessions is determined by the value of | |
336 `eshell-buffer-name'. If there is already an Eshell session active in | |
337 that buffer, Emacs will simply switch to it. Otherwise, a new session | |
46705
9f4f7bee7b8d
(eshell): Numeric prefix arg means to switch
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
43321
diff
changeset
|
338 will begin. A numeric prefix arg (as in `C-u 42 M-x eshell RET') |
9f4f7bee7b8d
(eshell): Numeric prefix arg means to switch
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
43321
diff
changeset
|
339 switches to the session with that number, creating it if necessary. A |
9f4f7bee7b8d
(eshell): Numeric prefix arg means to switch
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
43321
diff
changeset
|
340 nonnumeric prefix arg means to create a new session. Returns the |
9f4f7bee7b8d
(eshell): Numeric prefix arg means to switch
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
43321
diff
changeset
|
341 buffer selected (or created)." |
29876 | 342 (interactive "P") |
343 (assert eshell-buffer-name) | |
46705
9f4f7bee7b8d
(eshell): Numeric prefix arg means to switch
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
43321
diff
changeset
|
344 (let ((buf (cond ((numberp arg) |
9f4f7bee7b8d
(eshell): Numeric prefix arg means to switch
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
43321
diff
changeset
|
345 (get-buffer-create (format "%s<%d>" |
9f4f7bee7b8d
(eshell): Numeric prefix arg means to switch
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
43321
diff
changeset
|
346 eshell-buffer-name |
9f4f7bee7b8d
(eshell): Numeric prefix arg means to switch
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
43321
diff
changeset
|
347 arg))) |
9f4f7bee7b8d
(eshell): Numeric prefix arg means to switch
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
43321
diff
changeset
|
348 (arg |
9f4f7bee7b8d
(eshell): Numeric prefix arg means to switch
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
43321
diff
changeset
|
349 (generate-new-buffer eshell-buffer-name)) |
9f4f7bee7b8d
(eshell): Numeric prefix arg means to switch
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
43321
diff
changeset
|
350 (t |
9f4f7bee7b8d
(eshell): Numeric prefix arg means to switch
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
43321
diff
changeset
|
351 (get-buffer-create eshell-buffer-name))))) |
29876 | 352 ;; Simply calling `pop-to-buffer' will not mimic the way that |
353 ;; shell-mode buffers appear, since they always reuse the same | |
354 ;; window that that command was invoked from. To achieve this, | |
355 ;; it's necessary to add `eshell-buffer-name' to the variable | |
356 ;; `same-window-buffer-names', which is done when Eshell is loaded | |
357 (assert (and buf (buffer-live-p buf))) | |
358 (pop-to-buffer buf) | |
64830
e5c6f54442d2
(eshell): Avoid warnings about eshell-mode.
Richard M. Stallman <rms@gnu.org>
parents:
64701
diff
changeset
|
359 (if (fboundp 'eshell-mode) |
e5c6f54442d2
(eshell): Avoid warnings about eshell-mode.
Richard M. Stallman <rms@gnu.org>
parents:
64701
diff
changeset
|
360 (unless (eq major-mode 'eshell-mode) |
e5c6f54442d2
(eshell): Avoid warnings about eshell-mode.
Richard M. Stallman <rms@gnu.org>
parents:
64701
diff
changeset
|
361 (eshell-mode)) |
29876 | 362 (error "`eshell-auto' must be loaded before Eshell can be used")) |
363 buf)) | |
364 | |
365 (defun eshell-return-exits-minibuffer () | |
366 (define-key eshell-mode-map [(control ?g)] 'abort-recursive-edit) | |
367 (define-key eshell-mode-map [return] 'exit-minibuffer) | |
368 (define-key eshell-mode-map [(control ?m)] 'exit-minibuffer) | |
369 (define-key eshell-mode-map [(control ?j)] 'exit-minibuffer) | |
370 (define-key eshell-mode-map [(meta return)] 'exit-minibuffer) | |
371 (define-key eshell-mode-map [(meta control ?m)] 'exit-minibuffer)) | |
372 | |
37436
33a9a90f3e76
(eshell-command): Made a few changes so that `eshell-command' could be
John Wiegley <johnw@newartisans.com>
parents:
37281
diff
changeset
|
373 (defvar eshell-non-interactive-p nil |
33a9a90f3e76
(eshell-command): Made a few changes so that `eshell-command' could be
John Wiegley <johnw@newartisans.com>
parents:
37281
diff
changeset
|
374 "A variable which is non-nil when Eshell is not running interactively. |
33a9a90f3e76
(eshell-command): Made a few changes so that `eshell-command' could be
John Wiegley <johnw@newartisans.com>
parents:
37281
diff
changeset
|
375 Modules should use this variable so that they don't clutter |
33a9a90f3e76
(eshell-command): Made a few changes so that `eshell-command' could be
John Wiegley <johnw@newartisans.com>
parents:
37281
diff
changeset
|
376 non-interactive sessions, such as when using `eshell-command'.") |
33a9a90f3e76
(eshell-command): Made a few changes so that `eshell-command' could be
John Wiegley <johnw@newartisans.com>
parents:
37281
diff
changeset
|
377 |
29876 | 378 ;;;###autoload |
379 (defun eshell-command (&optional command arg) | |
380 "Execute the Eshell command string COMMAND. | |
381 With prefix ARG, insert output into the current buffer at point." | |
382 (interactive) | |
383 (require 'esh-cmd) | |
37436
33a9a90f3e76
(eshell-command): Made a few changes so that `eshell-command' could be
John Wiegley <johnw@newartisans.com>
parents:
37281
diff
changeset
|
384 (unless arg |
33a9a90f3e76
(eshell-command): Made a few changes so that `eshell-command' could be
John Wiegley <johnw@newartisans.com>
parents:
37281
diff
changeset
|
385 (setq arg current-prefix-arg)) |
29876 | 386 (unwind-protect |
387 (let ((eshell-non-interactive-p t)) | |
388 (add-hook 'minibuffer-setup-hook 'eshell-mode) | |
43321
358616bbe6a1
(eshell-command): Before reading from the minibuffer, add
John Wiegley <johnw@newartisans.com>
parents:
42686
diff
changeset
|
389 (add-hook 'minibuffer-exit-hook 'eshell-add-command-to-history) |
29876 | 390 (add-hook 'eshell-mode-hook 'eshell-return-exits-minibuffer) |
37436
33a9a90f3e76
(eshell-command): Made a few changes so that `eshell-command' could be
John Wiegley <johnw@newartisans.com>
parents:
37281
diff
changeset
|
391 (unless command |
33a9a90f3e76
(eshell-command): Made a few changes so that `eshell-command' could be
John Wiegley <johnw@newartisans.com>
parents:
37281
diff
changeset
|
392 (setq command (read-from-minibuffer "Emacs shell command: ")))) |
29876 | 393 (remove-hook 'eshell-mode-hook 'eshell-return-exits-minibuffer) |
43321
358616bbe6a1
(eshell-command): Before reading from the minibuffer, add
John Wiegley <johnw@newartisans.com>
parents:
42686
diff
changeset
|
394 (remove-hook 'minibuffer-exit-hook 'eshell-add-command-to-history) |
29876 | 395 (remove-hook 'minibuffer-setup-hook 'eshell-mode)) |
396 (unless command | |
397 (error "No command specified!")) | |
398 ;; redirection into the current buffer is achieved by adding an | |
399 ;; output redirection to the end of the command, of the form | |
400 ;; 'COMMAND >>> #<buffer BUFFER>'. This will not interfere with | |
401 ;; other redirections, since multiple redirections merely cause the | |
402 ;; output to be copied to multiple target locations | |
403 (if arg | |
404 (setq command | |
405 (concat command | |
406 (format " >>> #<buffer %s>" | |
407 (buffer-name (current-buffer)))))) | |
408 (save-excursion | |
409 (require 'esh-mode) | |
410 (let ((buf (set-buffer (generate-new-buffer " *eshell cmd*"))) | |
411 (eshell-non-interactive-p t)) | |
412 (eshell-mode) | |
413 (let* ((proc (eshell-eval-command | |
414 (list 'eshell-commands | |
415 (eshell-parse-command command)))) | |
416 intr | |
417 (bufname (if (and proc (listp proc)) | |
418 "*EShell Async Command Output*" | |
419 (setq intr t) | |
420 "*EShell Command Output*"))) | |
421 (if (buffer-live-p (get-buffer bufname)) | |
422 (kill-buffer bufname)) | |
423 (rename-buffer bufname) | |
424 ;; things get a little coarse here, since the desire is to | |
425 ;; make the output as attractive as possible, with no | |
426 ;; extraneous newlines | |
427 (when intr | |
428 (if (eshell-interactive-process) | |
429 (eshell-wait-for-process (eshell-interactive-process))) | |
430 (assert (not (eshell-interactive-process))) | |
431 (goto-char (point-max)) | |
432 (while (and (bolp) (not (bobp))) | |
433 (delete-backward-char 1))) | |
434 (assert (and buf (buffer-live-p buf))) | |
435 (unless arg | |
436 (let ((len (if (not intr) 2 | |
437 (count-lines (point-min) (point-max))))) | |
438 (cond | |
439 ((= len 0) | |
440 (message "(There was no command output)") | |
441 (kill-buffer buf)) | |
442 ((= len 1) | |
37281
85c38f2eac06
(eshell-command): Needed a "%s" format specifier, in case the buffer
John Wiegley <johnw@newartisans.com>
parents:
32451
diff
changeset
|
443 (message "%s" (buffer-string)) |
29876 | 444 (kill-buffer buf)) |
445 (t | |
446 (save-selected-window | |
447 (select-window (display-buffer buf)) | |
448 (goto-char (point-min)) | |
449 ;; cause the output buffer to take up as little screen | |
450 ;; real-estate as possible, if temp buffer resizing is | |
451 ;; enabled | |
452 (and intr temp-buffer-resize-mode | |
453 (resize-temp-buffer-window))))))))))) | |
454 | |
455 ;;;###autoload | |
456 (defun eshell-command-result (command &optional status-var) | |
457 "Execute the given Eshell COMMAND, and return the result. | |
458 The result might be any Lisp object. | |
459 If STATUS-VAR is a symbol, it will be set to the exit status of the | |
460 command. This is the only way to determine whether the value returned | |
461 corresponding to a successful execution." | |
462 ;; a null command produces a null, successful result | |
463 (if (not command) | |
464 (ignore | |
465 (if (and status-var (symbolp status-var)) | |
466 (set status-var 0))) | |
467 (with-temp-buffer | |
468 (require 'esh-mode) | |
469 (let ((eshell-non-interactive-p t)) | |
470 (eshell-mode) | |
471 (let ((result (eshell-do-eval | |
472 (list 'eshell-commands | |
473 (list 'eshell-command-to-value | |
474 (eshell-parse-command command))) t))) | |
475 (assert (eq (car result) 'quote)) | |
476 (if (and status-var (symbolp status-var)) | |
477 (set status-var eshell-last-command-status)) | |
478 (cadr result)))))) | |
479 | |
480 (eshell-deftest mode simple-command-result | |
481 "`eshell-command-result' works with a simple command." | |
482 (= (eshell-command-result "+ 1 2") 3)) | |
483 | |
484 ;;;_* Reporting bugs | |
485 ;; | |
486 ;; Since Eshell has not yet been in use by a wide audience, and since | |
487 ;; the number of possible configurations is quite large, it is certain | |
488 ;; that many bugs slipped past the rigors of testing it was put | |
489 ;; through. If you do encounter a bug, on any system, please report | |
490 ;; it -- in addition to any particular oddities in your configuration | |
491 ;; -- so that the problem may be corrected for the benefit of others. | |
492 | |
493 (defconst eshell-report-bug-address "johnw@gnu.org" | |
494 "E-mail address to send Eshell bug reports to.") | |
495 | |
496 ;;;###autoload | |
497 (defun eshell-report-bug (topic) | |
498 "Report a bug in Eshell. | |
499 Prompts for the TOPIC. Leaves you in a mail buffer. | |
500 Please include any configuration details that might be involved." | |
501 (interactive "sBug Subject: ") | |
502 (compose-mail eshell-report-bug-address topic) | |
503 (goto-char (point-min)) | |
504 (re-search-forward (concat "^" (regexp-quote mail-header-separator) "$")) | |
505 (forward-line 1) | |
506 (let ((signature (buffer-substring (point) (point-max)))) | |
507 ;; Discourage users from writing non-English text. | |
508 (set-buffer-multibyte nil) | |
509 (delete-region (point) (point-max)) | |
510 (insert signature) | |
511 (backward-char (length signature))) | |
512 (insert "emacs-version: " (emacs-version)) | |
513 (insert "\n\nThere appears to be a bug in Eshell.\n\n" | |
514 "Please describe exactly what actions " | |
515 "triggered the bug and the precise\n" | |
516 "symptoms of the bug:\n\n") | |
517 ;; This is so the user has to type something in order to send | |
518 ;; the report easily. | |
519 (use-local-map (nconc (make-sparse-keymap) (current-local-map)))) | |
520 | |
521 ;;; Code: | |
522 | |
523 (defun eshell-unload-all-modules () | |
524 "Unload all modules that were loaded by Eshell, if possible. | |
525 If the user has require'd in any of the modules, or customized a | |
526 variable with a :require tag (such as `eshell-prefer-to-shell'), it | |
527 will be impossible to unload Eshell completely without restarting | |
528 Emacs." | |
529 ;; if the user set `eshell-prefer-to-shell' to t, but never loaded | |
530 ;; Eshell, then `eshell-subgroups' will be unbound | |
531 (when (fboundp 'eshell-subgroups) | |
532 (eshell-for module (eshell-subgroups 'eshell) | |
533 ;; this really only unloads as many modules as possible, | |
534 ;; since other `require' references (such as by customizing | |
535 ;; `eshell-prefer-to-shell' to a non-nil value) might make it | |
536 ;; impossible to unload Eshell completely | |
537 (if (featurep module) | |
538 (ignore-errors | |
539 (message "Unloading %s..." (symbol-name module)) | |
540 (unload-feature module) | |
541 (message "Unloading %s...done" (symbol-name module))))) | |
542 (message "Unloading eshell...done"))) | |
543 | |
544 (run-hooks 'eshell-load-hook) | |
545 | |
52401 | 546 ;;; arch-tag: 9d4d5214-0e4e-4e02-b349-39add640d63f |
29876 | 547 ;;; eshell.el ends here |