]> code.delx.au - gnu-emacs/blob - lisp/eshell/eshell.el
Update years in copyright notice; nfc.
[gnu-emacs] / lisp / eshell / eshell.el
1 ;;; eshell.el --- the Emacs command shell
2
3 ;; Copyright (C) 1999, 2000, 2002, 2003, 2004,
4 ;; 2005, 2006 Free Software Foundation, Inc.
5
6 ;; Author: John Wiegley <johnw@gnu.org>
7 ;; Version: 2.4.2
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
14 ;; the Free Software Foundation; either version 2, or (at your option)
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
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
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"
38 :link '(info-link "(eshell)Top")
39 :version "21.1"
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
68 ;; @ Pseudo-devices (such as "/dev/clip" for copying to the clipboard)
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
80 ;; the Free Software Foundation; either version 2, or (at your option)
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
90 ;; Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
91 ;; MA 02110-1301, USA.
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
215 ;;;_* Speeding up load time
216 ;;
217 ;; If you find that Eshell loads too slowly, there is something you
218 ;; can do to speed it up.
219 ;;
220 ;; Create a file, named /tmp/elc, containing this filelist:
221 ;;
222 ;; esh-util.elc
223 ;; eshell.elc
224 ;; esh-module.elc
225 ;; esh-var.elc
226 ;; esh-proc.elc
227 ;; esh-arg.elc
228 ;; esh-io.elc
229 ;; esh-ext.elc
230 ;; esh-cmd.elc
231 ;; esh-mode.elc
232 ;; esh-opt.elc
233 ;; em-alias.elc
234 ;; em-banner.elc
235 ;; em-basic.elc
236 ;; em-cmpl.elc
237 ;; em-dirs.elc
238 ;; em-pred.elc
239 ;; em-glob.elc
240 ;; em-hist.elc
241 ;; em-ls.elc
242 ;; em-prompt.elc
243 ;; em-rebind.elc
244 ;; em-script.elc
245 ;; em-smart.elc
246 ;; em-term.elc
247 ;; em-unix.elc
248 ;; em-xtra.elc
249 ;;
250 ;; The order is very important. Remove from the filelist any features
251 ;; you don't use. These all begin with "em-". If you don't use
252 ;; Eshell's key rebinding module, you can remove "em-rebind.elc" from
253 ;; the filelist. The modules you are currently using are listed in
254 ;; `eshell-modules-list'.
255 ;;
256 ;; Now, concatenating all of the above mentioned .elc files, in that
257 ;; order, to another file. Here is how to do this on UNIX:
258 ;;
259 ;; cat `cat /tmp/elc` > tmp.elc ; mv tmp.elc eshell.elc
260 ;;
261 ;; Now your eshell.elc file contains all of the .elc files that make
262 ;; up Eshell, in the right load order. When you next load Eshell, it
263 ;; will only have to read in this one file, which will greatly speed
264 ;; things up.
265
266 ;;;_* User Options
267 ;;
268 ;; The following user options modify the behavior of Eshell overall.
269
270 (unless (featurep 'esh-util)
271 (load "esh-util" nil t))
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
311 (defcustom eshell-directory-name (convert-standard-filename "~/.eshell/")
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 (defcustom eshell-prefer-to-shell nil
327 "*If non-nil, \\[shell-command] will use Eshell instead of shell-mode."
328 :set (lambda (symbol value)
329 ;; modifying the global keymap directly is odious, but how
330 ;; else to achieve the takeover?
331 (if value
332 (progn
333 (define-key global-map [(meta ?!)] 'eshell-command)
334 ;;; (define-key global-map [(meta ?|)] 'eshell-command-on-region)
335 )
336 (define-key global-map [(meta ?!)] 'shell-command)
337 ;;; (define-key global-map [(meta ?|)] 'shell-command-on-region)
338 )
339 (set symbol value))
340 :type 'boolean
341 :require 'eshell
342 :group 'eshell)
343
344 ;;;_* Running Eshell
345 ;;
346 ;; There are only three commands used to invoke Eshell. The first two
347 ;; are intended for interactive use, while the third is meant for
348 ;; programmers. They are:
349
350 ;;;###autoload
351 (defun eshell (&optional arg)
352 "Create an interactive Eshell buffer.
353 The buffer used for Eshell sessions is determined by the value of
354 `eshell-buffer-name'. If there is already an Eshell session active in
355 that buffer, Emacs will simply switch to it. Otherwise, a new session
356 will begin. A numeric prefix arg (as in `C-u 42 M-x eshell RET')
357 switches to the session with that number, creating it if necessary. A
358 nonnumeric prefix arg means to create a new session. Returns the
359 buffer selected (or created)."
360 (interactive "P")
361 (assert eshell-buffer-name)
362 (let ((buf (cond ((numberp arg)
363 (get-buffer-create (format "%s<%d>"
364 eshell-buffer-name
365 arg)))
366 (arg
367 (generate-new-buffer eshell-buffer-name))
368 (t
369 (get-buffer-create eshell-buffer-name)))))
370 ;; Simply calling `pop-to-buffer' will not mimic the way that
371 ;; shell-mode buffers appear, since they always reuse the same
372 ;; window that that command was invoked from. To achieve this,
373 ;; it's necessary to add `eshell-buffer-name' to the variable
374 ;; `same-window-buffer-names', which is done when Eshell is loaded
375 (assert (and buf (buffer-live-p buf)))
376 (pop-to-buffer buf)
377 (if (fboundp 'eshell-mode)
378 (unless (eq major-mode 'eshell-mode)
379 (eshell-mode))
380 (error "`eshell-auto' must be loaded before Eshell can be used"))
381 buf))
382
383 (defun eshell-return-exits-minibuffer ()
384 (define-key eshell-mode-map [(control ?g)] 'abort-recursive-edit)
385 (define-key eshell-mode-map [return] 'exit-minibuffer)
386 (define-key eshell-mode-map [(control ?m)] 'exit-minibuffer)
387 (define-key eshell-mode-map [(control ?j)] 'exit-minibuffer)
388 (define-key eshell-mode-map [(meta return)] 'exit-minibuffer)
389 (define-key eshell-mode-map [(meta control ?m)] 'exit-minibuffer))
390
391 (defvar eshell-non-interactive-p nil
392 "A variable which is non-nil when Eshell is not running interactively.
393 Modules should use this variable so that they don't clutter
394 non-interactive sessions, such as when using `eshell-command'.")
395
396 ;;;###autoload
397 (defun eshell-command (&optional command arg)
398 "Execute the Eshell command string COMMAND.
399 With prefix ARG, insert output into the current buffer at point."
400 (interactive)
401 (require 'esh-cmd)
402 (unless arg
403 (setq arg current-prefix-arg))
404 (unwind-protect
405 (let ((eshell-non-interactive-p t))
406 (add-hook 'minibuffer-setup-hook 'eshell-mode)
407 (add-hook 'minibuffer-exit-hook 'eshell-add-command-to-history)
408 (add-hook 'eshell-mode-hook 'eshell-return-exits-minibuffer)
409 (unless command
410 (setq command (read-from-minibuffer "Emacs shell command: "))))
411 (remove-hook 'eshell-mode-hook 'eshell-return-exits-minibuffer)
412 (remove-hook 'minibuffer-exit-hook 'eshell-add-command-to-history)
413 (remove-hook 'minibuffer-setup-hook 'eshell-mode))
414 (unless command
415 (error "No command specified!"))
416 ;; redirection into the current buffer is achieved by adding an
417 ;; output redirection to the end of the command, of the form
418 ;; 'COMMAND >>> #<buffer BUFFER>'. This will not interfere with
419 ;; other redirections, since multiple redirections merely cause the
420 ;; output to be copied to multiple target locations
421 (if arg
422 (setq command
423 (concat command
424 (format " >>> #<buffer %s>"
425 (buffer-name (current-buffer))))))
426 (save-excursion
427 (require 'esh-mode)
428 (let ((buf (set-buffer (generate-new-buffer " *eshell cmd*")))
429 (eshell-non-interactive-p t))
430 (eshell-mode)
431 (let* ((proc (eshell-eval-command
432 (list 'eshell-commands
433 (eshell-parse-command command))))
434 intr
435 (bufname (if (and proc (listp proc))
436 "*EShell Async Command Output*"
437 (setq intr t)
438 "*EShell Command Output*")))
439 (if (buffer-live-p (get-buffer bufname))
440 (kill-buffer bufname))
441 (rename-buffer bufname)
442 ;; things get a little coarse here, since the desire is to
443 ;; make the output as attractive as possible, with no
444 ;; extraneous newlines
445 (when intr
446 (if (eshell-interactive-process)
447 (eshell-wait-for-process (eshell-interactive-process)))
448 (assert (not (eshell-interactive-process)))
449 (goto-char (point-max))
450 (while (and (bolp) (not (bobp)))
451 (delete-backward-char 1)))
452 (assert (and buf (buffer-live-p buf)))
453 (unless arg
454 (let ((len (if (not intr) 2
455 (count-lines (point-min) (point-max)))))
456 (cond
457 ((= len 0)
458 (message "(There was no command output)")
459 (kill-buffer buf))
460 ((= len 1)
461 (message "%s" (buffer-string))
462 (kill-buffer buf))
463 (t
464 (save-selected-window
465 (select-window (display-buffer buf))
466 (goto-char (point-min))
467 ;; cause the output buffer to take up as little screen
468 ;; real-estate as possible, if temp buffer resizing is
469 ;; enabled
470 (and intr temp-buffer-resize-mode
471 (resize-temp-buffer-window)))))))))))
472
473 ;;;###autoload
474 (defun eshell-command-result (command &optional status-var)
475 "Execute the given Eshell COMMAND, and return the result.
476 The result might be any Lisp object.
477 If STATUS-VAR is a symbol, it will be set to the exit status of the
478 command. This is the only way to determine whether the value returned
479 corresponding to a successful execution."
480 ;; a null command produces a null, successful result
481 (if (not command)
482 (ignore
483 (if (and status-var (symbolp status-var))
484 (set status-var 0)))
485 (with-temp-buffer
486 (require 'esh-mode)
487 (let ((eshell-non-interactive-p t))
488 (eshell-mode)
489 (let ((result (eshell-do-eval
490 (list 'eshell-commands
491 (list 'eshell-command-to-value
492 (eshell-parse-command command))) t)))
493 (assert (eq (car result) 'quote))
494 (if (and status-var (symbolp status-var))
495 (set status-var eshell-last-command-status))
496 (cadr result))))))
497
498 (eshell-deftest mode simple-command-result
499 "`eshell-command-result' works with a simple command."
500 (= (eshell-command-result "+ 1 2") 3))
501
502 ;;;_* Reporting bugs
503 ;;
504 ;; Since Eshell has not yet been in use by a wide audience, and since
505 ;; the number of possible configurations is quite large, it is certain
506 ;; that many bugs slipped past the rigors of testing it was put
507 ;; through. If you do encounter a bug, on any system, please report
508 ;; it -- in addition to any particular oddities in your configuration
509 ;; -- so that the problem may be corrected for the benefit of others.
510
511 (defconst eshell-report-bug-address "johnw@gnu.org"
512 "E-mail address to send Eshell bug reports to.")
513
514 ;;;###autoload
515 (defun eshell-report-bug (topic)
516 "Report a bug in Eshell.
517 Prompts for the TOPIC. Leaves you in a mail buffer.
518 Please include any configuration details that might be involved."
519 (interactive "sBug Subject: ")
520 (compose-mail eshell-report-bug-address topic)
521 (goto-char (point-min))
522 (re-search-forward (concat "^" (regexp-quote mail-header-separator) "$"))
523 (forward-line 1)
524 (let ((signature (buffer-substring (point) (point-max))))
525 ;; Discourage users from writing non-English text.
526 (set-buffer-multibyte nil)
527 (delete-region (point) (point-max))
528 (insert signature)
529 (backward-char (length signature)))
530 (insert "emacs-version: " (emacs-version))
531 (insert "\n\nThere appears to be a bug in Eshell.\n\n"
532 "Please describe exactly what actions "
533 "triggered the bug and the precise\n"
534 "symptoms of the bug:\n\n")
535 ;; This is so the user has to type something in order to send
536 ;; the report easily.
537 (use-local-map (nconc (make-sparse-keymap) (current-local-map))))
538
539 ;;; Code:
540
541 (defun eshell-unload-all-modules ()
542 "Unload all modules that were loaded by Eshell, if possible.
543 If the user has require'd in any of the modules, or customized a
544 variable with a :require tag (such as `eshell-prefer-to-shell'), it
545 will be impossible to unload Eshell completely without restarting
546 Emacs."
547 ;; if the user set `eshell-prefer-to-shell' to t, but never loaded
548 ;; Eshell, then `eshell-subgroups' will be unbound
549 (when (fboundp 'eshell-subgroups)
550 (eshell-for module (eshell-subgroups 'eshell)
551 ;; this really only unloads as many modules as possible,
552 ;; since other `require' references (such as by customizing
553 ;; `eshell-prefer-to-shell' to a non-nil value) might make it
554 ;; impossible to unload Eshell completely
555 (if (featurep module)
556 (ignore-errors
557 (message "Unloading %s..." (symbol-name module))
558 (unload-feature module)
559 (message "Unloading %s...done" (symbol-name module)))))
560 (message "Unloading eshell...done")))
561
562 (run-hooks 'eshell-load-hook)
563
564 ;;; arch-tag: 9d4d5214-0e4e-4e02-b349-39add640d63f
565 ;;; eshell.el ends here