]> code.delx.au - gnu-emacs/blob - lisp/shell.el
* isearch.el (isearch-frames-exist): This isn't what we want -
[gnu-emacs] / lisp / shell.el
1 ;;; shell.el --- specialized comint.el for running the shell.
2 ;;; Copyright (C) 1988 Free Software Foundation, Inc.
3
4 ;; Author: Olin Shivers <shivers@cs.cmu.edu>
5 ;; Keywords: processes
6
7 ;;; This file is part of GNU Emacs.
8
9 ;;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;;; it under the terms of the GNU General Public License as published by
11 ;;; the Free Software Foundation; either version 2, or (at your option)
12 ;;; any later version.
13
14 ;;; GNU Emacs is distributed in the hope that it will be useful,
15 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;;; GNU General Public License for more details.
18
19 ;;; You should have received a copy of the GNU General Public License
20 ;;; along with GNU Emacs; see the file COPYING. If not, write to
21 ;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22
23 ;;; Commentary:
24
25 ;;; The changelog is at the end of file.
26
27 ;;; Please send me bug reports, bug fixes, and extensions, so that I can
28 ;;; merge them into the master source.
29 ;;; - Olin Shivers (shivers@cs.cmu.edu)
30
31 ;;; This file defines a a shell-in-a-buffer package (shell mode) built
32 ;;; on top of comint mode. This is actually cmushell with things
33 ;;; renamed to replace its counterpart in Emacs 18. cmushell is more
34 ;;; featureful, robust, and uniform than the Emacs 18 version.
35
36 ;;; Since this mode is built on top of the general command-interpreter-in-
37 ;;; a-buffer mode (comint mode), it shares a common base functionality,
38 ;;; and a common set of bindings, with all modes derived from comint mode.
39 ;;; This makes these modes easier to use.
40
41 ;;; For documentation on the functionality provided by comint mode, and
42 ;;; the hooks available for customising it, see the file comint.el.
43 ;;; For further information on shell mode, see the comments below.
44
45 ;;; Needs fixin:
46 ;;; When sending text from a source file to a subprocess, the process-mark can
47 ;;; move off the window, so you can lose sight of the process interactions.
48 ;;; Maybe I should ensure the process mark is in the window when I send
49 ;;; text to the process? Switch selectable?
50
51 ;; YOUR .EMACS FILE
52 ;;=============================================================================
53 ;; Some suggestions for your .emacs file.
54 ;;
55 ;; ; If cmushell lives in some non-standard directory, you must tell emacs
56 ;; ; where to get it. This may or may not be necessary.
57 ;; (setq load-path (cons (expand-file-name "~jones/lib/emacs") load-path))
58 ;;
59 ;; ; Autoload cmushell from file cmushell.el
60 ;; (autoload 'cmushell "cmushell"
61 ;; "Run an inferior shell process."
62 ;; t)
63 ;;
64 ;; ; Define C-c t to run my favorite command in cmushell mode:
65 ;; (setq cmushell-load-hook
66 ;; '((lambda ()
67 ;; (define-key cmushell-mode-map "\C-ct" 'favorite-cmd))))
68
69 \f
70 ;;; Brief Command Documentation:
71 ;;;============================================================================
72 ;;; Comint Mode Commands: (common to shell and all comint-derived modes)
73 ;;;
74 ;;; m-p comint-previous-input Cycle backwards in input history
75 ;;; m-n comint-next-input Cycle forwards
76 ;;; m-c-r comint-previous-input-matching Search backwards in input history
77 ;;; return comint-send-input
78 ;;; c-a comint-bol Beginning of line; skip prompt.
79 ;;; c-d comint-delchar-or-maybe-eof Delete char unless at end of buff.
80 ;;; c-c c-u comint-kill-input ^u
81 ;;; c-c c-w backward-kill-word ^w
82 ;;; c-c c-c comint-interrupt-subjob ^c
83 ;;; c-c c-z comint-stop-subjob ^z
84 ;;; c-c c-\ comint-quit-subjob ^\
85 ;;; c-c c-o comint-kill-output Delete last batch of process output
86 ;;; c-c c-r comint-show-output Show last batch of process output
87 ;;; send-invisible Read line w/o echo & send to proc
88 ;;; comint-continue-subjob Useful if you accidentally suspend
89 ;;; top-level job.
90 ;;; comint-mode-hook is the comint mode hook.
91
92 ;;; Shell Mode Commands:
93 ;;; shell Fires up the shell process.
94 ;;; tab comint-dynamic-complete Complete a partial file name
95 ;;; m-? comint-dynamic-list-completions List completions in help buffer
96 ;;; dirs Resync the buffer's dir stack.
97 ;;; dirtrack-toggle Turn dir tracking on/off.
98 ;;;
99 ;;; The shell mode hook is shell-mode-hook
100 ;;; The shell-load-hook is run after this file is loaded.
101 ;;; comint-prompt-regexp is initialised to shell-prompt-pattern, for backwards
102 ;;; compatibility.
103
104 ;;; Read the rest of this file for more information.
105 \f
106 ;;; SHELL.EL COMPATIBILITY
107 ;;; Notes from when this was called cmushell, and was not the standard emacs
108 ;;; shell package.
109 ;;;============================================================================
110 ;;; In brief: this package should have no trouble coexisting with shell.el.
111 ;;;
112 ;;; Most customising variables -- e.g., explicit-shell-file-name -- are the
113 ;;; same, so the users shouldn't have much trouble. Hooks have different
114 ;;; names, however, so you can customise shell mode differently from cmushell
115 ;;; mode. You basically just have to remember to type M-x cmushell instead of
116 ;;; M-x shell.
117 ;;;
118 ;;; It would be nice if this file was completely plug-compatible with the old
119 ;;; shell package -- if you could just name this file shell.el, and have it
120 ;;; transparently replace the old one. But you can't. Several other packages
121 ;;; (tex-mode, background, dbx, gdb, kermit, monkey, prolog, telnet) are also
122 ;;; clients of shell mode. These packages assume detailed knowledge of shell
123 ;;; mode internals in ways that are incompatible with cmushell mode (mostly
124 ;;; because of cmushell mode's greater functionality). So, unless we are
125 ;;; willing to port all of these packages, we can't have this file be a
126 ;;; complete replacement for shell.el -- that is, we can't name this file
127 ;;; shell.el, and its main entry point (shell), because dbx.el will break
128 ;;; when it loads it in and tries to use it.
129 ;;;
130 ;;; There are two ways to fix this. One: rewrite these other modes to use the
131 ;;; new package. This is a win, but can't be assumed. The other, backwards
132 ;;; compatible route, is to make this package non-conflict with shell.el, so
133 ;;; both files can be loaded in at the same time. And *that* is why some
134 ;;; functions and variables have different names: (cmushell),
135 ;;; cmushell-mode-map, that sort of thing. All the names have been carefully
136 ;;; chosen so that shell.el and cmushell.el won't tromp on each other.
137 \f
138 ;;; Customisation and Buffer Variables
139 ;;; ===========================================================================
140 ;;;
141
142 ;;; Code:
143
144 (require 'comint)
145
146 ;;;###autoload
147 (defconst shell-prompt-pattern "^[^#$%>]*[#$%>] *"
148 "Regexp to match prompts in the inferior shell.
149 Defaults to \"^[^#$%>]*[#$%>] *\", which works pretty well.
150 This variable is used to initialise comint-prompt-regexp in the
151 shell buffer.
152
153 This is a fine thing to set in your .emacs file.")
154
155 (defvar shell-popd-regexp "popd"
156 "*Regexp to match subshell commands equivalent to popd.")
157
158 (defvar shell-pushd-regexp "pushd"
159 "*Regexp to match subshell commands equivalent to pushd.")
160
161 (defvar shell-cd-regexp "cd"
162 "*Regexp to match subshell commands equivalent to cd.")
163
164 (defvar explicit-shell-file-name nil
165 "*If non-nil, is file name to use for explicitly requested inferior shell.")
166
167 (defvar explicit-csh-args
168 (if (eq system-type 'hpux)
169 ;; -T persuades HP's csh not to think it is smarter
170 ;; than us about what terminal modes to use.
171 '("-i" "-T")
172 '("-i"))
173 "*Args passed to inferior shell by M-x shell, if the shell is csh.
174 Value is a list of strings, which may be nil.")
175
176 ;;; All the above vars aren't prefixed "cmushell-" to make them
177 ;;; backwards compatible w/shell.el and old .emacs files.
178
179 (defvar shell-dirstack nil
180 "List of directories saved by pushd in this buffer's shell.
181 Thus, this does not include the shell's current directory.")
182
183 (defvar shell-dirstack-query "dirs"
184 "Command used by shell-resync-dirlist to query shell.")
185
186 (defvar shell-mode-map '())
187 (cond ((not shell-mode-map)
188 (setq shell-mode-map (full-copy-sparse-keymap comint-mode-map))
189 (define-key shell-mode-map "\t" 'comint-dynamic-complete)
190 (define-key shell-mode-map "\M-?" 'comint-dynamic-list-completions)))
191
192 (defvar shell-mode-hook '()
193 "*Hook for customising shell mode")
194
195 \f
196 ;;; Basic Procedures
197 ;;; ===========================================================================
198 ;;;
199
200 (defun shell-mode ()
201 "Major mode for interacting with an inferior shell.
202 Return after the end of the process' output sends the text from the
203 end of process to the end of the current line.
204 Return before end of process output copies the current line (except
205 for the prompt) to the end of the buffer and sends it.
206 M-x send-invisible reads a line of text without echoing it, and sends it to
207 the shell. This is useful for entering passwords.
208
209 If you accidentally suspend your process, use \\[comint-continue-subjob]
210 to continue it.
211
212 cd, pushd and popd commands given to the shell are watched by Emacs to keep
213 this buffer's default directory the same as the shell's working directory.
214 M-x dirs queries the shell and resyncs Emacs' idea of what the current
215 directory stack is.
216 M-x dirtrack-toggle turns directory tracking on and off.
217
218 \\{shell-mode-map}
219 Customisation: Entry to this mode runs the hooks on comint-mode-hook and
220 shell-mode-hook (in that order).
221
222 Variables shell-cd-regexp, shell-pushd-regexp and shell-popd-regexp are used
223 to match their respective commands."
224 (interactive)
225 (comint-mode)
226 (setq comint-prompt-regexp shell-prompt-pattern)
227 (setq major-mode 'shell-mode)
228 (setq mode-name "shell")
229 (use-local-map shell-mode-map)
230 (make-local-variable 'shell-dirstack)
231 (setq shell-dirstack nil)
232 (make-local-variable 'shell-dirtrackp)
233 (setq shell-dirtrackp t)
234 (setq comint-input-sentinel 'shell-directory-tracker)
235 (run-hooks 'shell-mode-hook))
236
237 \f
238 ;;;###autoload
239 (defun shell ()
240 "Run an inferior shell, with I/O through buffer *shell*.
241 If buffer exists but shell process is not running, make new shell.
242 If buffer exists and shell process is running,
243 just switch to buffer `*shell*'.
244 Program used comes from variable explicit-shell-file-name,
245 or (if that is nil) from the ESHELL environment variable,
246 or else from SHELL if there is no ESHELL.
247 If a file `~/.emacs_SHELLNAME' exists, it is given as initial input
248 (Note that this may lose due to a timing error if the shell
249 discards input when it starts up.)
250 The buffer is put in Shell mode, giving commands for sending input
251 and controlling the subjobs of the shell. See `shell-mode'.
252 See also the variable `shell-prompt-pattern'.
253
254 The shell file name (sans directories) is used to make a symbol name
255 such as `explicit-csh-arguments'. If that symbol is a variable,
256 its value is used as a list of arguments when invoking the shell.
257 Otherwise, one argument `-i' is passed to the shell.
258
259 \(Type \\[describe-mode] in the shell buffer for a list of commands.)"
260 (interactive)
261 (cond ((not (comint-check-proc "*shell*"))
262 (let* ((prog (or explicit-shell-file-name
263 (getenv "ESHELL")
264 (getenv "SHELL")
265 "/bin/sh"))
266 (name (file-name-nondirectory prog))
267 (startfile (concat "~/.emacs_" name))
268 (xargs-name (intern-soft (concat "explicit-" name "-args"))))
269 (set-buffer (apply 'make-comint "shell" prog
270 (if (file-exists-p startfile) startfile)
271 (if (and xargs-name (boundp xargs-name))
272 (symbol-value xargs-name)
273 '("-i"))))
274 (shell-mode))))
275 (switch-to-buffer "*shell*"))
276
277 \f
278 ;;; Directory tracking
279 ;;; ===========================================================================
280 ;;; This code provides the shell mode input sentinel
281 ;;; SHELL-DIRECTORY-TRACKER
282 ;;; that tracks cd, pushd, and popd commands issued to the shell, and
283 ;;; changes the current directory of the shell buffer accordingly.
284 ;;;
285 ;;; This is basically a fragile hack, although it's more accurate than
286 ;;; the released version in shell.el. It has the following failings:
287 ;;; 1. It doesn't know about the cdpath shell variable.
288 ;;; 2. It only spots the first command in a command sequence. E.g., it will
289 ;;; miss the cd in "ls; cd foo"
290 ;;; 3. More generally, any complex command (like ";" sequencing) is going to
291 ;;; throw it. Otherwise, you'd have to build an entire shell interpreter in
292 ;;; emacs lisp. Failing that, there's no way to catch shell commands where
293 ;;; cd's are buried inside conditional expressions, aliases, and so forth.
294 ;;;
295 ;;; The whole approach is a crock. Shell aliases mess it up. File sourcing
296 ;;; messes it up. You run other processes under the shell; these each have
297 ;;; separate working directories, and some have commands for manipulating
298 ;;; their w.d.'s (e.g., the lcd command in ftp). Some of these programs have
299 ;;; commands that do *not* affect the current w.d. at all, but look like they
300 ;;; do (e.g., the cd command in ftp). In shells that allow you job
301 ;;; control, you can switch between jobs, all having different w.d.'s. So
302 ;;; simply saying %3 can shift your w.d..
303 ;;;
304 ;;; The solution is to relax, not stress out about it, and settle for
305 ;;; a hack that works pretty well in typical circumstances. Remember
306 ;;; that a half-assed solution is more in keeping with the spirit of Unix,
307 ;;; anyway. Blech.
308 ;;;
309 ;;; One good hack not implemented here for users of programmable shells
310 ;;; is to program up the shell w.d. manipulation commands to output
311 ;;; a coded command sequence to the tty. Something like
312 ;;; ESC | <cwd> |
313 ;;; where <cwd> is the new current working directory. Then trash the
314 ;;; directory tracking machinery currently used in this package, and
315 ;;; replace it with a process filter that watches for and strips out
316 ;;; these messages.
317
318 ;;; REGEXP is a regular expression. STR is a string. START is a fixnum.
319 ;;; Returns T if REGEXP matches STR where the match is anchored to start
320 ;;; at position START in STR. Sort of like LOOKING-AT for strings.
321 (defun shell-front-match (regexp str start)
322 (eq start (string-match regexp str start)))
323
324 (defun shell-directory-tracker (str)
325 "Tracks cd, pushd and popd commands issued to the shell.
326 This function is called on each input passed to the shell.
327 It watches for cd, pushd and popd commands and sets the buffer's
328 default directory to track these commands.
329
330 You may toggle this tracking on and off with M-x dirtrack-toggle.
331 If emacs gets confused, you can resync with the shell with M-x dirs.
332
333 See variables shell-cd-regexp, shell-pushd-regexp, and shell-popd-regexp.
334 Environment variables are expanded, see function substitute-in-file-name."
335 (condition-case err
336 (cond (shell-dirtrackp
337 (string-match "^\\s *" str) ; skip whitespace
338 (let ((bos (match-end 0))
339 (x nil))
340 (cond ((setq x (shell-match-cmd-w/optional-arg shell-popd-regexp
341 str bos))
342 (shell-process-popd (substitute-in-file-name x)))
343 ((setq x (shell-match-cmd-w/optional-arg shell-pushd-regexp
344 str bos))
345 (shell-process-pushd (substitute-in-file-name x)))
346 ((setq x (shell-match-cmd-w/optional-arg shell-cd-regexp
347 str bos))
348 (shell-process-cd (substitute-in-file-name x)))))))
349 (error (message (car (cdr err))))))
350
351
352 ;;; Try to match regexp CMD to string, anchored at position START.
353 ;;; CMD may be followed by a single argument. If a match, then return
354 ;;; the argument, if there is one, or the empty string if not. If
355 ;;; no match, return nil.
356
357 (defun shell-match-cmd-w/optional-arg (cmd str start)
358 (and (shell-front-match cmd str start)
359 (let ((eoc (match-end 0))) ; end of command
360 (cond ((shell-front-match "\\s *\\(\;\\|$\\)" str eoc)
361 "") ; no arg
362 ((shell-front-match "\\s +\\([^ \t\;]+\\)\\s *\\(\;\\|$\\)"
363 str eoc)
364 (substring str (match-beginning 1) (match-end 1))) ; arg
365 (t nil))))) ; something else.
366 ;;; The first regexp is [optional whitespace, (";" or the end of string)].
367 ;;; The second regexp is [whitespace, (an arg), optional whitespace,
368 ;;; (";" or end of string)].
369
370
371 ;;; popd [+n]
372 (defun shell-process-popd (arg)
373 (let ((num (if (zerop (length arg)) 0 ; no arg means +0
374 (shell-extract-num arg))))
375 (if (and num (< num (length shell-dirstack)))
376 (if (= num 0) ; condition-case because the CD could lose.
377 (condition-case nil (progn (cd (car shell-dirstack))
378 (setq shell-dirstack
379 (cdr shell-dirstack))
380 (shell-dirstack-message))
381 (error (message "Couldn't cd.")))
382 (let* ((ds (cons nil shell-dirstack))
383 (cell (nthcdr (- num 1) ds)))
384 (rplacd cell (cdr (cdr cell)))
385 (setq shell-dirstack (cdr ds))
386 (shell-dirstack-message)))
387 (message "Bad popd."))))
388
389
390 ;;; cd [dir]
391 (defun shell-process-cd (arg)
392 (condition-case nil (progn (cd (if (zerop (length arg)) (getenv "HOME")
393 arg))
394 (shell-dirstack-message))
395 (error (message "Couldn't cd."))))
396
397
398 ;;; pushd [+n | dir]
399 (defun shell-process-pushd (arg)
400 (if (zerop (length arg))
401 ;; no arg -- swap pwd and car of shell stack
402 (condition-case nil (if shell-dirstack
403 (let ((old default-directory))
404 (cd (car shell-dirstack))
405 (setq shell-dirstack
406 (cons old (cdr shell-dirstack)))
407 (shell-dirstack-message))
408 (message "Directory stack empty."))
409 (message "Couldn't cd."))
410
411 (let ((num (shell-extract-num arg)))
412 (if num ; pushd +n
413 (if (> num (length shell-dirstack))
414 (message "Directory stack not that deep.")
415 (let* ((ds (cons default-directory shell-dirstack))
416 (dslen (length ds))
417 (front (nthcdr num ds))
418 (back (reverse (nthcdr (- dslen num) (reverse ds))))
419 (new-ds (append front back)))
420 (condition-case nil
421 (progn (cd (car new-ds))
422 (setq shell-dirstack (cdr new-ds))
423 (shell-dirstack-message))
424 (error (message "Couldn't cd.")))))
425
426 ;; pushd <dir>
427 (let ((old-wd default-directory))
428 (condition-case nil
429 (progn (cd arg)
430 (setq shell-dirstack
431 (cons old-wd shell-dirstack))
432 (shell-dirstack-message))
433 (error (message "Couldn't cd."))))))))
434
435 ;; If STR is of the form +n, for n>0, return n. Otherwise, nil.
436 (defun shell-extract-num (str)
437 (and (string-match "^\\+[1-9][0-9]*$" str)
438 (string-to-int str)))
439
440
441 (defun shell-dirtrack-toggle ()
442 "Turn directory tracking on and off in a shell buffer."
443 (interactive)
444 (setq shell-dirtrackp (not shell-dirtrackp))
445 (message "directory tracking %s."
446 (if shell-dirtrackp "ON" "OFF")))
447
448 ;;; For your typing convenience:
449 (fset 'dirtrack-toggle 'shell-dirtrack-toggle)
450
451
452 (defun shell-resync-dirs ()
453 "Resync the buffer's idea of the current directory stack.
454 This command queries the shell with the command bound to
455 shell-dirstack-query (default \"dirs\"), reads the next
456 line output and parses it to form the new directory stack.
457 DON'T issue this command unless the buffer is at a shell prompt.
458 Also, note that if some other subprocess decides to do output
459 immediately after the query, its output will be taken as the
460 new directory stack -- you lose. If this happens, just do the
461 command again."
462 (interactive)
463 (let* ((proc (get-buffer-process (current-buffer)))
464 (pmark (process-mark proc)))
465 (goto-char pmark)
466 (insert shell-dirstack-query) (insert "\n")
467 (sit-for 0) ; force redisplay
468 (comint-send-string proc shell-dirstack-query)
469 (comint-send-string proc "\n")
470 (set-marker pmark (point))
471 (let ((pt (point))) ; wait for 1 line
472 ;; This extra newline prevents the user's pending input from spoofing us.
473 (insert "\n") (backward-char 1)
474 (while (not (looking-at ".+\n"))
475 (accept-process-output proc)
476 (goto-char pt)))
477 (goto-char pmark) (delete-char 1) ; remove the extra newline
478 ;; That's the dirlist. grab it & parse it.
479 (let* ((dl (buffer-substring (match-beginning 0) (- (match-end 0) 1)))
480 (dl-len (length dl))
481 (ds '()) ; new dir stack
482 (i 0))
483 (while (< i dl-len)
484 ;; regexp = optional whitespace, (non-whitespace), optional whitespace
485 (string-match "\\s *\\(\\S +\\)\\s *" dl i) ; pick off next dir
486 (setq ds (cons (substring dl (match-beginning 1) (match-end 1))
487 ds))
488 (setq i (match-end 0)))
489 (let ((ds (reverse ds)))
490 (condition-case nil
491 (progn (cd (car ds))
492 (setq shell-dirstack (cdr ds))
493 (shell-dirstack-message))
494 (error (message "Couldn't cd.")))))))
495
496 ;;; For your typing convenience:
497 (fset 'dirs 'shell-resync-dirs)
498
499
500 ;;; Show the current dirstack on the message line.
501 ;;; Pretty up dirs a bit by changing "/usr/jqr/foo" to "~/foo".
502 ;;; (This isn't necessary if the dirlisting is generated with a simple "dirs".)
503 ;;; All the commands that mung the buffer's dirstack finish by calling
504 ;;; this guy.
505 (defun shell-dirstack-message ()
506 (let ((msg "")
507 (ds (cons default-directory shell-dirstack)))
508 (while ds
509 (let ((dir (car ds)))
510 (if (string-match (format "^%s\\(/\\|$\\)" (getenv "HOME")) dir)
511 (setq dir (concat "~/" (substring dir (match-end 0)))))
512 (if (string-equal dir "~/") (setq dir "~"))
513 (setq msg (concat msg dir " "))
514 (setq ds (cdr ds))))
515 (message msg)))
516
517
518 \f
519 ;;; Interfacing to client packages (and converting them)
520 ;;; Notes from when this was called cmushell, and was not the standard emacs
521 ;;; shell package. Many of the conversions discussed here have been done.
522 ;;;============================================================================
523 ;;; Several gnu packages (tex-mode, background, dbx, gdb, kermit, prolog,
524 ;;; telnet are some) use the shell package as clients. Most of them would
525 ;;; be better off using the comint package directly, but they predate it.
526 ;;; The catch is that most of these packages (dbx, gdb, prolog, telnet)
527 ;;; assume total knowledge of all the local variables that shell mode
528 ;;; functions depend on. So they (kill-all-local-variables), then create
529 ;;; the few local variables that shell.el functions depend on. Alas,
530 ;;; cmushell.el functions depend on a different set of vars (for example,
531 ;;; the input history ring is a local variable in cmushell.el's shell mode,
532 ;;; whereas there is no input history ring in shell.el's shell mode).
533 ;;; So we have a situation where the greater functionality of cmushell.el
534 ;;; is biting us -- you can't just replace shell will cmushell.
535 ;;;
536 ;;; Altering these packages to use comint mode directly should *greatly*
537 ;;; improve their functionality, and is actually pretty easy. It's
538 ;;; mostly a matter of renaming a few variable names. See comint.el for more.
539 ;;; -Olin
540
541
542
543 ;;; Do the user's customisation...
544 ;;;===============================
545 (defvar shell-load-hook nil
546 "This hook is run when shell is loaded in.
547 This is a good place to put keybindings.")
548
549 (run-hooks 'shell-load-hook)
550
551 ;;; Change Log
552 ;;; ===========================================================================
553 ;;; Olin 8/88
554 ;;; Created.
555 ;;;
556 ;;; Olin 5/26/90
557 ;;; - Split cmulisp and cmushell modes into separate files.
558 ;;; Not only is this a good idea, it's apparently the way it'll be rel 19.
559 ;;; - Souped up the directory tracking; it now can handle pushd, pushd +n,
560 ;;; and popd +n.
561 ;;; - Added cmushell-dirtrack-toggle command to toggle the directory
562 ;;; tracking that cmushell tries to do. This is useful, for example,
563 ;;; when you are running ftp -- it prevents the ftp "cd" command from
564 ;;; spoofing the tracking machinery. This command is also named
565 ;;; dirtrack-toggle, so you need only type M-x dirtrack to run it.
566 ;;; - Added cmushell-resync-dirs command. This queries the shell
567 ;;; for the current directory stack, and resets the buffer's stack
568 ;;; accordingly. This command is also named dirs, so you need only type
569 ;;; M-x dirs to run it.
570 ;;; - Bits of the new directory tracking code were adapted from source
571 ;;; contributed by Vince Broman, Jeff Peck, and Barry Warsaw.
572 ;;; - See also the improvements made to comint.el at the same time.
573 ;;; - Renamed several variables. Mostly this comprised changing "shell"
574 ;;; to "cmushell" in the names. The only variables that are not prefixed
575 ;;; with "cmushell-" are the ones that are common with shell.el:
576 ;;; explicit-shell-file-name shell-prompt-pattern explicit-csh-args
577 ;;; and shell-cd/popd/pushd-regexp
578 ;;; The variables and functions that were changed to have "cmushell-"
579 ;;; prefixes are:
580 ;;; shell-directory-stack (v), shell-directory-tracker (f)
581 ;;; This should not affect users, only Emacs Lisp hackers. Hopefully
582 ;;; one day shell.el will just go away, and we can drop all this
583 ;;; "cmushell" bullshit.
584 ;;; - Upgraded process sends to use comint-send-string instead of
585 ;;; process-send-string.
586 ;;;
587 ;;; Olin 6/14/90
588 ;;; - If your shell is named <shellname>, and a variable named
589 ;;; explicit-<shellname>-args exists, cmushell is supposed
590 ;;; to use its value as the arglist to the shell invocation.
591 ;;; E.g., if you define explicit-csh-args to be
592 ;;; ("-ifx"), then when cmushell cranks up a csh, it execs it
593 ;;; as "csh -ifx". This is what is documented. What has actually
594 ;;; been the case is that the variable checked is
595 ;;; explicit-<shellname>-arguments, not explicit-<shellname>-args.
596 ;;; The documentation has been changed to conform to the code (for
597 ;;; backwards compatibility with shell.el). This bug is inherited from
598 ;;; the same bug in shell.el.
599 ;;; This bug reported by Stephen Anderson.
600 ;;;
601 ;;; Olin 9/5/90
602 ;;; - Arguments to cd, popd, and pushd now have their env vars expanded
603 ;;; out by the tracking machinery. So if you say "cd $SRCDIR/funs", the
604 ;;; $SRCDIR var will be replaced by its value *in emacs' process
605 ;;; environment*. If this is different from the shell's binding of the
606 ;;; variable, you lose. Several users needed this feature, fragile
607 ;;; though it may be. The fix was contributed by sk@thp.Uni-Koeln.DE.
608 ;;;
609 ;;; Olin 3/12/91
610 ;;; - Moved comint-dynamic-complete (filename completion) from M-tab to tab.
611 ;;;
612 ;;; Jim Blandy 10/30/91
613 ;;; - Removed the "cmu" prefix from names, renamed file to shell.el,
614 ;;; to become the standard shell package.
615
616 (provide 'shell)
617
618 ;;; shell.el ends here