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