Delete #if 0 old definitions.
[bpt/emacs.git] / lisp / shell.el
1 ;;; shell.el --- specialized comint.el for running the shell.
2
3 ;; Copyright (C) 1988, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
4
5 ;; Author: Olin Shivers <shivers@cs.cmu.edu> then
6 ;; Simon Marshall <simon@gnu.ai.mit.edu>
7 ;; Maintainer: FSF
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., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Commentary:
28
29 ;; Please send me bug reports, bug fixes, and extensions, so that I can
30 ;; merge them into the master source.
31 ;; - Olin Shivers (shivers@cs.cmu.edu)
32 ;; - Simon Marshall (simon@gnu.ai.mit.edu)
33
34 ;; This file defines a a shell-in-a-buffer package (shell mode) built
35 ;; on top of comint mode. This is actually cmushell with things
36 ;; renamed to replace its counterpart in Emacs 18. cmushell is more
37 ;; featureful, robust, and uniform than the Emacs 18 version.
38
39 ;; Since this mode is built on top of the general command-interpreter-in-
40 ;; a-buffer mode (comint mode), it shares a common base functionality,
41 ;; and a common set of bindings, with all modes derived from comint mode.
42 ;; This makes these modes easier to use.
43
44 ;; For documentation on the functionality provided by comint mode, and
45 ;; the hooks available for customising it, see the file comint.el.
46 ;; For further information on shell mode, see the comments below.
47
48 ;; Needs fixin:
49 ;; When sending text from a source file to a subprocess, the process-mark can
50 ;; move off the window, so you can lose sight of the process interactions.
51 ;; Maybe I should ensure the process mark is in the window when I send
52 ;; text to the process? Switch selectable?
53
54 ;; YOUR .EMACS FILE
55 ;;=============================================================================
56 ;; Some suggestions for your .emacs file.
57 ;;
58 ;; ;; Define M-# to run some strange command:
59 ;; (eval-after-load "shell"
60 ;; '(define-key shell-mode-map "\M-#" 'shells-dynamic-spell))
61 \f
62 ;; Brief Command Documentation:
63 ;;============================================================================
64 ;; Comint Mode Commands: (common to shell and all comint-derived modes)
65 ;;
66 ;; m-p comint-previous-input Cycle backwards in input history
67 ;; m-n comint-next-input Cycle forwards
68 ;; m-r comint-previous-matching-input Previous input matching a regexp
69 ;; m-s comint-next-matching-input Next input that matches
70 ;; m-c-l comint-show-output Show last batch of process output
71 ;; return comint-send-input
72 ;; c-d comint-delchar-or-maybe-eof Delete char unless at end of buff.
73 ;; c-c c-a comint-bol Beginning of line; skip prompt
74 ;; c-c c-u comint-kill-input ^u
75 ;; c-c c-w backward-kill-word ^w
76 ;; c-c c-c comint-interrupt-subjob ^c
77 ;; c-c c-z comint-stop-subjob ^z
78 ;; c-c c-\ comint-quit-subjob ^\
79 ;; c-c c-o comint-kill-output Delete last batch of process output
80 ;; c-c c-r comint-show-output Show last batch of process output
81 ;; c-c c-h comint-dynamic-list-input-ring List input history
82 ;; send-invisible Read line w/o echo & send to proc
83 ;; comint-continue-subjob Useful if you accidentally suspend
84 ;; top-level job
85 ;; comint-mode-hook is the comint mode hook.
86
87 ;; Shell Mode Commands:
88 ;; shell Fires up the shell process
89 ;; tab comint-dynamic-complete Complete filename/command/history
90 ;; m-? comint-dynamic-list-filename-completions
91 ;; List completions in help buffer
92 ;; m-c-f shell-forward-command Forward a shell command
93 ;; m-c-b shell-backward-command Backward a shell command
94 ;; dirs Resync the buffer's dir stack
95 ;; dirtrack-mode Turn dir tracking on/off
96 ;; comint-strip-ctrl-m Remove trailing ^Ms from output
97 ;;
98 ;; The shell mode hook is shell-mode-hook
99 ;; comint-prompt-regexp is initialised to shell-prompt-pattern, for backwards
100 ;; compatibility.
101
102 ;; Read the rest of this file for more information.
103 \f
104 ;;; Code:
105
106 (require 'comint)
107
108 ;;; Customization and Buffer Variables
109
110 (defgroup shell nil
111 "Running shell from within Emacs buffers"
112 :group 'processes
113 :group 'unix)
114
115 (defgroup shell-directories nil
116 "Directory support in shell mode"
117 :group 'shell)
118
119 (defgroup shell-faces nil
120 "Faces in shell buffers"
121 :group 'shell)
122
123 ;;;###autoload
124 (defcustom shell-prompt-pattern "^[^#$%>\n]*[#$%>] *"
125 "Regexp to match prompts in the inferior shell.
126 Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well.
127 This variable is used to initialise `comint-prompt-regexp' in the
128 shell buffer.
129
130 The pattern should probably not match more than one line. If it does,
131 Shell mode may become confused trying to distinguish prompt from input
132 on lines which don't start with a prompt.
133
134 This is a fine thing to set in your `.emacs' file."
135 :type 'regexp
136 :group 'shell)
137
138 (defcustom shell-completion-fignore nil
139 "*List of suffixes to be disregarded during file/command completion.
140 This variable is used to initialize `comint-completion-fignore' in the shell
141 buffer. The default is nil, for compatibility with most shells.
142 Some people like (\"~\" \"#\" \"%\").
143
144 This is a fine thing to set in your `.emacs' file."
145 :type '(repeat (string :tag "Suffix"))
146 :group 'shell)
147
148 (defvar shell-delimiter-argument-list '(?\| ?& ?< ?> ?\( ?\) ?\;)
149 "List of characters to recognise as separate arguments.
150 This variable is used to initialize `comint-delimiter-argument-list' in the
151 shell buffer. The value may depend on the operating system or shell.
152
153 This is a fine thing to set in your `.emacs' file.")
154
155 (defvar shell-file-name-chars
156 (if (memq system-type '(ms-dos windows-nt))
157 "~/A-Za-z0-9_^$!#%&{}@`'.,:()-"
158 "~/A-Za-z0-9+@:_.$#%,={}-")
159 "String of characters valid in a file name.
160 This variable is used to initialize `comint-file-name-chars' in the
161 shell buffer. The value may depend on the operating system or shell.
162
163 This is a fine thing to set in your `.emacs' file.")
164
165 (defvar shell-file-name-quote-list
166 (if (memq system-type '(ms-dos windows-nt))
167 nil
168 (append shell-delimiter-argument-list '(?\ ?\* ?\! ?\" ?\' ?\` ?\#)))
169 "List of characters to quote when in a file name.
170 This variable is used to initialize `comint-file-name-quote-list' in the
171 shell buffer. The value may depend on the operating system or shell.
172
173 This is a fine thing to set in your `.emacs' file.")
174
175 (defvar shell-dynamic-complete-functions
176 '(comint-replace-by-expanded-history
177 shell-dynamic-complete-environment-variable
178 shell-dynamic-complete-command
179 shell-replace-by-expanded-directory
180 comint-dynamic-complete-filename)
181 "List of functions called to perform completion.
182 This variable is used to initialise `comint-dynamic-complete-functions' in the
183 shell buffer.
184
185 This is a fine thing to set in your `.emacs' file.")
186
187 (defcustom shell-command-regexp "[^;&|\n]+"
188 "*Regexp to match a single command within a pipeline.
189 This is used for directory tracking and does not do a perfect job."
190 :type 'regexp
191 :group 'shell)
192
193 (defcustom shell-completion-execonly t
194 "*If non-nil, use executable files only for completion candidates.
195 This mirrors the optional behavior of tcsh.
196
197 Detecting executability of files may slow command completion considerably."
198 :type 'boolean
199 :group 'shell)
200
201 (defcustom shell-popd-regexp "popd"
202 "*Regexp to match subshell commands equivalent to popd."
203 :type 'regexp
204 :group 'shell-directories)
205
206 (defcustom shell-pushd-regexp "pushd"
207 "*Regexp to match subshell commands equivalent to pushd."
208 :type 'regexp
209 :group 'shell-directories)
210
211 (defcustom shell-pushd-tohome nil
212 "*If non-nil, make pushd with no arg behave as \"pushd ~\" (like cd).
213 This mirrors the optional behavior of tcsh."
214 :type 'boolean
215 :group 'shell-directories)
216
217 (defcustom shell-pushd-dextract nil
218 "*If non-nil, make \"pushd +n\" pop the nth dir to the stack top.
219 This mirrors the optional behavior of tcsh."
220 :type 'boolean
221 :group 'shell-directories)
222
223 (defcustom shell-pushd-dunique nil
224 "*If non-nil, make pushd only add unique directories to the stack.
225 This mirrors the optional behavior of tcsh."
226 :type 'boolean
227 :group 'shell-directories)
228
229 (defcustom shell-cd-regexp "cd"
230 "*Regexp to match subshell commands equivalent to cd."
231 :type 'regexp
232 :group 'shell-directories)
233
234 (defcustom shell-chdrive-regexp
235 (if (memq system-type '(ms-dos windows-nt))
236 ; NetWare allows the five chars between upper and lower alphabetics.
237 "[]a-zA-Z^_`\\[\\\\]:"
238 nil)
239 "*If non-nil, is regexp used to track drive changes."
240 :type '(choice regexp
241 (const nil))
242 :group 'shell-directories)
243
244 (defcustom explicit-shell-file-name nil
245 "*If non-nil, is file name to use for explicitly requested inferior shell."
246 :type '(choice (const :tag "None" nil) file)
247 :group 'shell)
248
249 (defcustom explicit-csh-args
250 (if (eq system-type 'hpux)
251 ;; -T persuades HP's csh not to think it is smarter
252 ;; than us about what terminal modes to use.
253 '("-i" "-T")
254 '("-i"))
255 "*Args passed to inferior shell by M-x shell, if the shell is csh.
256 Value is a list of strings, which may be nil."
257 :type '(repeat (string :tag "Argument"))
258 :group 'shell)
259
260 (defcustom shell-input-autoexpand 'history
261 "*If non-nil, expand input command history references on completion.
262 This mirrors the optional behavior of tcsh (its autoexpand and histlit).
263
264 If the value is `input', then the expansion is seen on input.
265 If the value is `history', then the expansion is only when inserting
266 into the buffer's input ring. See also `comint-magic-space' and
267 `comint-dynamic-complete'.
268
269 This variable supplies a default for `comint-input-autoexpand',
270 for Shell mode only."
271 :type '(choice (const :tag "off" nil)
272 (const input)
273 (const history)
274 (const :tag "on" t))
275 :group 'shell)
276
277 (defvar shell-dirstack nil
278 "List of directories saved by pushd in this buffer's shell.
279 Thus, this does not include the shell's current directory.")
280
281 (defvar shell-dirtrackp t
282 "Non-nil in a shell buffer means directory tracking is enabled.")
283
284 (defvar shell-last-dir nil
285 "Keep track of last directory for ksh `cd -' command.")
286
287 (defvar shell-dirstack-query nil
288 "Command used by `shell-resync-dir' to query the shell.")
289
290 (defvar shell-mode-map nil)
291 (cond ((not shell-mode-map)
292 (setq shell-mode-map (nconc (make-sparse-keymap) comint-mode-map))
293 (define-key shell-mode-map "\C-c\C-f" 'shell-forward-command)
294 (define-key shell-mode-map "\C-c\C-b" 'shell-backward-command)
295 (define-key shell-mode-map "\t" 'comint-dynamic-complete)
296 (define-key shell-mode-map "\M-?"
297 'comint-dynamic-list-filename-completions)
298 (define-key shell-mode-map [menu-bar completion]
299 (copy-keymap (lookup-key comint-mode-map [menu-bar completion])))
300 (define-key-after (lookup-key shell-mode-map [menu-bar completion])
301 [complete-env-variable] '("Complete Env. Variable Name" .
302 shell-dynamic-complete-environment-variable)
303 'complete-file)
304 (define-key-after (lookup-key shell-mode-map [menu-bar completion])
305 [expand-directory] '("Expand Directory Reference" .
306 shell-replace-by-expanded-directory)
307 'complete-expand)))
308
309 (defcustom shell-mode-hook '()
310 "*Hook for customising Shell mode."
311 :type 'hook
312 :group 'shell)
313
314 (defvar shell-font-lock-keywords
315 '((eval . (cons shell-prompt-pattern 'font-lock-warning-face))
316 ("[ \t]\\([+-][^ \t\n]+\\)" 1 font-lock-comment-face)
317 ("^[^ \t\n]+:.*" . font-lock-string-face)
318 ("^\\[[1-9][0-9]*\\]" . font-lock-string-face))
319 "Additional expressions to highlight in Shell mode.")
320 \f
321 ;;; Basic Procedures
322
323 (put 'shell-mode 'mode-class 'special)
324
325 (defun shell-mode ()
326 "Major mode for interacting with an inferior shell.
327 \\[comint-send-input] after the end of the process' output sends the text from
328 the end of process to the end of the current line.
329 \\[comint-send-input] before end of process output copies the current line minus the prompt to
330 the end of the buffer and sends it (\\[comint-copy-old-input] just copies the current line).
331 \\[send-invisible] reads a line of text without echoing it, and sends it to
332 the shell. This is useful for entering passwords. Or, add the function
333 `comint-watch-for-password-prompt' to `comint-output-filter-functions'.
334
335 If you want to make multiple shell buffers, rename the `*shell*' buffer
336 using \\[rename-buffer] or \\[rename-uniquely] and start a new shell.
337
338 If you want to make shell buffers limited in length, add the function
339 `comint-truncate-buffer' to `comint-output-filter-functions'.
340
341 If you accidentally suspend your process, use \\[comint-continue-subjob]
342 to continue it.
343
344 `cd', `pushd' and `popd' commands given to the shell are watched by Emacs to
345 keep this buffer's default directory the same as the shell's working directory.
346 While directory tracking is enabled, the shell's working directory is displayed
347 by \\[list-buffers] or \\[mouse-buffer-menu] in the `File' field.
348 \\[dirs] queries the shell and resyncs Emacs' idea of what the current
349 directory stack is.
350 \\[dirtrack-mode] turns directory tracking on and off.
351
352 \\{shell-mode-map}
353 Customization: Entry to this mode runs the hooks on `comint-mode-hook' and
354 `shell-mode-hook' (in that order). Before each input, the hooks on
355 `comint-input-filter-functions' are run. After each shell output, the hooks
356 on `comint-output-filter-functions' are run.
357
358 Variables `shell-cd-regexp', `shell-chdrive-regexp', `shell-pushd-regexp'
359 and `shell-popd-regexp' are used to match their respective commands,
360 while `shell-pushd-tohome', `shell-pushd-dextract' and `shell-pushd-dunique'
361 control the behavior of the relevant command.
362
363 Variables `comint-completion-autolist', `comint-completion-addsuffix',
364 `comint-completion-recexact' and `comint-completion-fignore' control the
365 behavior of file name, command name and variable name completion. Variable
366 `shell-completion-execonly' controls the behavior of command name completion.
367 Variable `shell-completion-fignore' is used to initialise the value of
368 `comint-completion-fignore'.
369
370 Variables `comint-input-ring-file-name' and `comint-input-autoexpand' control
371 the initialisation of the input ring history, and history expansion.
372
373 Variables `comint-output-filter-functions', a hook, and
374 `comint-scroll-to-bottom-on-input' and `comint-scroll-to-bottom-on-output'
375 control whether input and output cause the window to scroll to the end of the
376 buffer."
377 (interactive)
378 (comint-mode)
379 (setq major-mode 'shell-mode)
380 (setq mode-name "Shell")
381 (use-local-map shell-mode-map)
382 (setq comint-prompt-regexp shell-prompt-pattern)
383 (setq comint-completion-fignore shell-completion-fignore)
384 (setq comint-delimiter-argument-list shell-delimiter-argument-list)
385 (setq comint-file-name-chars shell-file-name-chars)
386 (setq comint-file-name-quote-list shell-file-name-quote-list)
387 (setq comint-dynamic-complete-functions shell-dynamic-complete-functions)
388 (make-local-variable 'paragraph-start)
389 (setq paragraph-start comint-prompt-regexp)
390 (make-local-variable 'font-lock-defaults)
391 (setq font-lock-defaults '(shell-font-lock-keywords t))
392 (make-local-variable 'shell-dirstack)
393 (setq shell-dirstack nil)
394 (make-local-variable 'shell-last-dir)
395 (setq shell-last-dir nil)
396 (make-local-variable 'shell-dirtrackp)
397 (setq shell-dirtrackp t)
398 (add-hook 'comint-input-filter-functions 'shell-directory-tracker nil t)
399 (setq comint-input-autoexpand shell-input-autoexpand)
400 ;; This is not really correct, since the shell buffer does not really
401 ;; edit this directory. But it is useful in the buffer list and menus.
402 (make-local-variable 'list-buffers-directory)
403 (setq list-buffers-directory (expand-file-name default-directory))
404 ;; shell-dependent assignments.
405 (let ((shell (file-name-nondirectory (car
406 (process-command (get-buffer-process (current-buffer)))))))
407 (setq comint-input-ring-file-name
408 (or (getenv "HISTFILE")
409 (cond ((string-equal shell "bash") "~/.bash_history")
410 ((string-equal shell "ksh") "~/.sh_history")
411 (t "~/.history"))))
412 (if (or (equal comint-input-ring-file-name "")
413 (equal (file-truename comint-input-ring-file-name)
414 (file-truename "/dev/null")))
415 (setq comint-input-ring-file-name nil))
416 (setq shell-dirstack-query
417 (cond ((string-equal shell "sh") "pwd")
418 ((string-equal shell "ksh") "echo $PWD ~-")
419 (t "dirs"))))
420 (run-hooks 'shell-mode-hook)
421 (comint-read-input-ring t))
422 \f
423 ;;;###autoload
424 (defun shell ()
425 "Run an inferior shell, with I/O through buffer *shell*.
426 If buffer exists but shell process is not running, make new shell.
427 If buffer exists and shell process is running, just switch to buffer `*shell*'.
428 Program used comes from variable `explicit-shell-file-name',
429 or (if that is nil) from the ESHELL environment variable,
430 or else from SHELL if there is no ESHELL.
431 If a file `~/.emacs_SHELLNAME' exists, it is given as initial input
432 (Note that this may lose due to a timing error if the shell
433 discards input when it starts up.)
434 The buffer is put in Shell mode, giving commands for sending input
435 and controlling the subjobs of the shell. See `shell-mode'.
436 See also the variable `shell-prompt-pattern'.
437
438 To specify a coding system for converting non-ASCII characters
439 in the input and output to the shell, use \\[universal-coding-system-argument]
440 before \\[shell]. You can also specify this with \\[set-buffer-process-coding-system]
441 in the shell buffer, after you start the shell.
442 The default comes from `process-coding-system-alist' and
443 `default-process-coding-system'.
444
445 The shell file name (sans directories) is used to make a symbol name
446 such as `explicit-csh-args'. If that symbol is a variable,
447 its value is used as a list of arguments when invoking the shell.
448 Otherwise, one argument `-i' is passed to the shell.
449
450 \(Type \\[describe-mode] in the shell buffer for a list of commands.)"
451 (interactive)
452 (if (not (comint-check-proc "*shell*"))
453 (let* ((prog (or explicit-shell-file-name
454 (getenv "ESHELL")
455 (getenv "SHELL")
456 "/bin/sh"))
457 (name (file-name-nondirectory prog))
458 (startfile (concat "~/.emacs_" name))
459 (xargs-name (intern-soft (concat "explicit-" name "-args")))
460 shell-buffer)
461 (save-excursion
462 (set-buffer (apply 'make-comint "shell" prog
463 (if (file-exists-p startfile) startfile)
464 (if (and xargs-name (boundp xargs-name))
465 (symbol-value xargs-name)
466 '("-i"))))
467 (setq shell-buffer (current-buffer))
468 (shell-mode))
469 (pop-to-buffer shell-buffer))
470 (pop-to-buffer "*shell*")))
471
472 ;;; Don't do this when shell.el is loaded, only while dumping.
473 ;;;###autoload (add-hook 'same-window-buffer-names "*shell*")
474 \f
475 ;;; Directory tracking
476 ;;;
477 ;;; This code provides the shell mode input sentinel
478 ;;; SHELL-DIRECTORY-TRACKER
479 ;;; that tracks cd, pushd, and popd commands issued to the shell, and
480 ;;; changes the current directory of the shell buffer accordingly.
481 ;;;
482 ;;; This is basically a fragile hack, although it's more accurate than
483 ;;; the version in Emacs 18's shell.el. It has the following failings:
484 ;;; 1. It doesn't know about the cdpath shell variable.
485 ;;; 2. It cannot infallibly deal with command sequences, though it does well
486 ;;; with these and with ignoring commands forked in another shell with ()s.
487 ;;; 3. More generally, any complex command is going to throw it. Otherwise,
488 ;;; you'd have to build an entire shell interpreter in emacs lisp. Failing
489 ;;; that, there's no way to catch shell commands where cd's are buried
490 ;;; inside conditional expressions, aliases, and so forth.
491 ;;;
492 ;;; The whole approach is a crock. Shell aliases mess it up. File sourcing
493 ;;; messes it up. You run other processes under the shell; these each have
494 ;;; separate working directories, and some have commands for manipulating
495 ;;; their w.d.'s (e.g., the lcd command in ftp). Some of these programs have
496 ;;; commands that do *not* affect the current w.d. at all, but look like they
497 ;;; do (e.g., the cd command in ftp). In shells that allow you job
498 ;;; control, you can switch between jobs, all having different w.d.'s. So
499 ;;; simply saying %3 can shift your w.d..
500 ;;;
501 ;;; The solution is to relax, not stress out about it, and settle for
502 ;;; a hack that works pretty well in typical circumstances. Remember
503 ;;; that a half-assed solution is more in keeping with the spirit of Unix,
504 ;;; anyway. Blech.
505 ;;;
506 ;;; One good hack not implemented here for users of programmable shells
507 ;;; is to program up the shell w.d. manipulation commands to output
508 ;;; a coded command sequence to the tty. Something like
509 ;;; ESC | <cwd> |
510 ;;; where <cwd> is the new current working directory. Then trash the
511 ;;; directory tracking machinery currently used in this package, and
512 ;;; replace it with a process filter that watches for and strips out
513 ;;; these messages.
514
515 (defun shell-directory-tracker (str)
516 "Tracks cd, pushd and popd commands issued to the shell.
517 This function is called on each input passed to the shell.
518 It watches for cd, pushd and popd commands and sets the buffer's
519 default directory to track these commands.
520
521 You may toggle this tracking on and off with M-x dirtrack-mode.
522 If emacs gets confused, you can resync with the shell with M-x dirs.
523
524 See variables `shell-cd-regexp', `shell-chdrive-regexp', `shell-pushd-regexp',
525 and `shell-popd-regexp', while `shell-pushd-tohome', `shell-pushd-dextract',
526 and `shell-pushd-dunique' control the behavior of the relevant command.
527
528 Environment variables are expanded, see function `substitute-in-file-name'."
529 (if shell-dirtrackp
530 ;; We fail gracefully if we think the command will fail in the shell.
531 (condition-case chdir-failure
532 (let ((start (progn (string-match "^[; \t]*" str) ; skip whitespace
533 (match-end 0)))
534 end cmd arg1)
535 (while (string-match shell-command-regexp str start)
536 (setq end (match-end 0)
537 cmd (comint-arguments (substring str start end) 0 0)
538 arg1 (comint-arguments (substring str start end) 1 1))
539 (cond ((string-match (concat "\\`\\(" shell-popd-regexp
540 "\\)\\($\\|[ \t]\\)")
541 cmd)
542 (shell-process-popd (comint-substitute-in-file-name arg1)))
543 ((string-match (concat "\\`\\(" shell-pushd-regexp
544 "\\)\\($\\|[ \t]\\)")
545 cmd)
546 (shell-process-pushd (comint-substitute-in-file-name arg1)))
547 ((string-match (concat "\\`\\(" shell-cd-regexp
548 "\\)\\($\\|[ \t]\\)")
549 cmd)
550 (shell-process-cd (comint-substitute-in-file-name arg1)))
551 ((and shell-chdrive-regexp
552 (string-match (concat "\\`\\(" shell-chdrive-regexp
553 "\\)\\($\\|[ \t]\\)")
554 cmd))
555 (shell-process-cd (comint-substitute-in-file-name cmd))))
556 (setq start (progn (string-match "[; \t]*" str end) ; skip again
557 (match-end 0)))))
558 (error "Couldn't cd"))))
559
560 ;;; popd [+n]
561 (defun shell-process-popd (arg)
562 (let ((num (or (shell-extract-num arg) 0)))
563 (cond ((and num (= num 0) shell-dirstack)
564 (shell-cd (car shell-dirstack))
565 (setq shell-dirstack (cdr shell-dirstack))
566 (shell-dirstack-message))
567 ((and num (> num 0) (<= num (length shell-dirstack)))
568 (let* ((ds (cons nil shell-dirstack))
569 (cell (nthcdr (1- num) ds)))
570 (rplacd cell (cdr (cdr cell)))
571 (setq shell-dirstack (cdr ds))
572 (shell-dirstack-message)))
573 (t
574 (error "Couldn't popd")))))
575
576 ;; Return DIR prefixed with comint-file-name-prefix as appropriate.
577 (defun shell-prefixed-directory-name (dir)
578 (if (= (length comint-file-name-prefix) 0)
579 dir
580 (if (file-name-absolute-p dir)
581 ;; The name is absolute, so prepend the prefix.
582 (concat comint-file-name-prefix dir)
583 ;; For relative name we assume default-directory already has the prefix.
584 (expand-file-name dir))))
585
586 ;;; cd [dir]
587 (defun shell-process-cd (arg)
588 (let ((new-dir (cond ((zerop (length arg)) (concat comint-file-name-prefix
589 "~"))
590 ((string-equal "-" arg) shell-last-dir)
591 (t (shell-prefixed-directory-name arg)))))
592 (setq shell-last-dir default-directory)
593 (shell-cd new-dir)
594 (shell-dirstack-message)))
595
596 ;;; pushd [+n | dir]
597 (defun shell-process-pushd (arg)
598 (let ((num (shell-extract-num arg)))
599 (cond ((zerop (length arg))
600 ;; no arg -- swap pwd and car of stack unless shell-pushd-tohome
601 (cond (shell-pushd-tohome
602 (shell-process-pushd (concat comint-file-name-prefix "~")))
603 (shell-dirstack
604 (let ((old default-directory))
605 (shell-cd (car shell-dirstack))
606 (setq shell-dirstack (cons old (cdr shell-dirstack)))
607 (shell-dirstack-message)))
608 (t
609 (message "Directory stack empty."))))
610 ((numberp num)
611 ;; pushd +n
612 (cond ((> num (length shell-dirstack))
613 (message "Directory stack not that deep."))
614 ((= num 0)
615 (error (message "Couldn't cd.")))
616 (shell-pushd-dextract
617 (let ((dir (nth (1- num) shell-dirstack)))
618 (shell-process-popd arg)
619 (shell-process-pushd default-directory)
620 (shell-cd dir)
621 (shell-dirstack-message)))
622 (t
623 (let* ((ds (cons default-directory shell-dirstack))
624 (dslen (length ds))
625 (front (nthcdr num ds))
626 (back (reverse (nthcdr (- dslen num) (reverse ds))))
627 (new-ds (append front back)))
628 (shell-cd (car new-ds))
629 (setq shell-dirstack (cdr new-ds))
630 (shell-dirstack-message)))))
631 (t
632 ;; pushd <dir>
633 (let ((old-wd default-directory))
634 (shell-cd (shell-prefixed-directory-name arg))
635 (if (or (null shell-pushd-dunique)
636 (not (member old-wd shell-dirstack)))
637 (setq shell-dirstack (cons old-wd shell-dirstack)))
638 (shell-dirstack-message))))))
639
640 ;; If STR is of the form +n, for n>0, return n. Otherwise, nil.
641 (defun shell-extract-num (str)
642 (and (string-match "^\\+[1-9][0-9]*$" str)
643 (string-to-int str)))
644
645
646 (defun shell-dirtrack-mode ()
647 "Turn directory tracking on and off in a shell buffer."
648 (interactive)
649 (if (setq shell-dirtrackp (not shell-dirtrackp))
650 (setq list-buffers-directory default-directory)
651 (setq list-buffers-directory nil))
652 (message "Directory tracking %s" (if shell-dirtrackp "ON" "OFF")))
653
654 ;;; For your typing convenience:
655 (defalias 'shell-dirtrack-toggle 'shell-dirtrack-mode)
656 (defalias 'dirtrack-toggle 'shell-dirtrack-mode)
657 (defalias 'dirtrack-mode 'shell-dirtrack-mode)
658
659 (defun shell-cd (dir)
660 "Do normal `cd' to DIR, and set `list-buffers-directory'."
661 (if shell-dirtrackp
662 (setq list-buffers-directory (file-name-as-directory
663 (expand-file-name dir))))
664 (cd dir))
665
666 (defun shell-resync-dirs ()
667 "Resync the buffer's idea of the current directory stack.
668 This command queries the shell with the command bound to
669 `shell-dirstack-query' (default \"dirs\"), reads the next
670 line output and parses it to form the new directory stack.
671 DON'T issue this command unless the buffer is at a shell prompt.
672 Also, note that if some other subprocess decides to do output
673 immediately after the query, its output will be taken as the
674 new directory stack -- you lose. If this happens, just do the
675 command again."
676 (interactive)
677 (let* ((proc (get-buffer-process (current-buffer)))
678 (pmark (process-mark proc)))
679 (goto-char pmark)
680 (insert shell-dirstack-query) (insert "\n")
681 (sit-for 0) ; force redisplay
682 (comint-send-string proc shell-dirstack-query)
683 (comint-send-string proc "\n")
684 (set-marker pmark (point))
685 (let ((pt (point))) ; wait for 1 line
686 ;; This extra newline prevents the user's pending input from spoofing us.
687 (insert "\n") (backward-char 1)
688 (while (not (looking-at ".+\n"))
689 (accept-process-output proc)
690 (goto-char pt)))
691 (goto-char pmark) (delete-char 1) ; remove the extra newline
692 ;; That's the dirlist. grab it & parse it.
693 (let* ((dl (buffer-substring (match-beginning 0) (1- (match-end 0))))
694 (dl-len (length dl))
695 (ds '()) ; new dir stack
696 (i 0))
697 (while (< i dl-len)
698 ;; regexp = optional whitespace, (non-whitespace), optional whitespace
699 (string-match "\\s *\\(\\S +\\)\\s *" dl i) ; pick off next dir
700 (setq ds (cons (concat comint-file-name-prefix
701 (substring dl (match-beginning 1)
702 (match-end 1)))
703 ds))
704 (setq i (match-end 0)))
705 (let ((ds (nreverse ds)))
706 (condition-case nil
707 (progn (shell-cd (car ds))
708 (setq shell-dirstack (cdr ds)
709 shell-last-dir (car shell-dirstack))
710 (shell-dirstack-message))
711 (error (message "Couldn't cd.")))))))
712
713 ;;; For your typing convenience:
714 (defalias 'dirs 'shell-resync-dirs)
715
716
717 ;;; Show the current dirstack on the message line.
718 ;;; Pretty up dirs a bit by changing "/usr/jqr/foo" to "~/foo".
719 ;;; (This isn't necessary if the dirlisting is generated with a simple "dirs".)
720 ;;; All the commands that mung the buffer's dirstack finish by calling
721 ;;; this guy.
722 (defun shell-dirstack-message ()
723 (let* ((msg "")
724 (ds (cons default-directory shell-dirstack))
725 (home (expand-file-name (concat comint-file-name-prefix "~/")))
726 (homelen (length home)))
727 (while ds
728 (let ((dir (car ds)))
729 (and (>= (length dir) homelen) (string= home (substring dir 0 homelen))
730 (setq dir (concat "~/" (substring dir homelen))))
731 ;; Strip off comint-file-name-prefix if present.
732 (and comint-file-name-prefix
733 (>= (length dir) (length comint-file-name-prefix))
734 (string= comint-file-name-prefix
735 (substring dir 0 (length comint-file-name-prefix)))
736 (setq dir (substring dir (length comint-file-name-prefix)))
737 (setcar ds dir))
738 (setq msg (concat msg (directory-file-name dir) " "))
739 (setq ds (cdr ds))))
740 (message "%s" msg)))
741 \f
742 ;; This was mostly copied from shell-resync-dirs.
743 (defun shell-snarf-envar (var)
744 "Return as a string the shell's value of environment variable VAR."
745 (let* ((cmd (format "printenv '%s'\n" var))
746 (proc (get-buffer-process (current-buffer)))
747 (pmark (process-mark proc)))
748 (goto-char pmark)
749 (insert cmd)
750 (sit-for 0) ; force redisplay
751 (comint-send-string proc cmd)
752 (set-marker pmark (point))
753 (let ((pt (point))) ; wait for 1 line
754 ;; This extra newline prevents the user's pending input from spoofing us.
755 (insert "\n") (backward-char 1)
756 (while (not (looking-at ".+\n"))
757 (accept-process-output proc)
758 (goto-char pt)))
759 (goto-char pmark) (delete-char 1) ; remove the extra newline
760 (buffer-substring (match-beginning 0) (1- (match-end 0)))))
761
762 (defun shell-copy-environment-variable (variable)
763 "Copy the environment variable VARIABLE from the subshell to Emacs.
764 This command reads the value of the specified environment variable
765 in the shell, and sets the same environment variable in Emacs
766 \(what `getenv' in Emacs would return) to that value.
767 That value will affect any new subprocesses that you subsequently start
768 from Emacs."
769 (interactive (list (read-envvar-name "\
770 Copy Shell environment variable to Emacs: ")))
771 (setenv variable (shell-snarf-envar variable)))
772 \f
773 (defun shell-forward-command (&optional arg)
774 "Move forward across ARG shell command(s). Does not cross lines.
775 See `shell-command-regexp'."
776 (interactive "p")
777 (let ((limit (save-excursion (end-of-line nil) (point))))
778 (if (re-search-forward (concat shell-command-regexp "\\([;&|][\t ]*\\)+")
779 limit 'move arg)
780 (skip-syntax-backward " "))))
781
782
783 (defun shell-backward-command (&optional arg)
784 "Move backward across ARG shell command(s). Does not cross lines.
785 See `shell-command-regexp'."
786 (interactive "p")
787 (let ((limit (save-excursion (comint-bol nil) (point))))
788 (if (> limit (point))
789 (save-excursion (beginning-of-line) (setq limit (point))))
790 (skip-syntax-backward " " limit)
791 (if (re-search-backward
792 (format "[;&|]+[\t ]*\\(%s\\)" shell-command-regexp) limit 'move arg)
793 (progn (goto-char (match-beginning 1))
794 (skip-chars-forward ";&|")))))
795
796
797 (defun shell-dynamic-complete-command ()
798 "Dynamically complete the command at point.
799 This function is similar to `comint-dynamic-complete-filename', except that it
800 searches `exec-path' (minus the trailing emacs library path) for completion
801 candidates. Note that this may not be the same as the shell's idea of the
802 path.
803
804 Completion is dependent on the value of `shell-completion-execonly', plus
805 those that effect file completion. See `shell-dynamic-complete-as-command'.
806
807 Returns t if successful."
808 (interactive)
809 (let ((filename (comint-match-partial-filename)))
810 (if (and filename
811 (save-match-data (not (string-match "[~/]" filename)))
812 (eq (match-beginning 0)
813 (save-excursion (shell-backward-command 1) (point))))
814 (prog2 (message "Completing command name...")
815 (shell-dynamic-complete-as-command)))))
816
817
818 (defun shell-dynamic-complete-as-command ()
819 "Dynamically complete at point as a command.
820 See `shell-dynamic-complete-filename'. Returns t if successful."
821 (let* ((filename (or (comint-match-partial-filename) ""))
822 (pathnondir (file-name-nondirectory filename))
823 (paths (cdr (reverse exec-path)))
824 (cwd (file-name-as-directory (expand-file-name default-directory)))
825 (ignored-extensions
826 (and comint-completion-fignore
827 (mapconcat (function (lambda (x) (concat (regexp-quote x) "$")))
828 comint-completion-fignore "\\|")))
829 (path "") (comps-in-path ()) (file "") (filepath "") (completions ()))
830 ;; Go thru each path in the search path, finding completions.
831 (while paths
832 (setq path (file-name-as-directory (comint-directory (or (car paths) ".")))
833 comps-in-path (and (file-accessible-directory-p path)
834 (file-name-all-completions pathnondir path)))
835 ;; Go thru each completion found, to see whether it should be used.
836 (while comps-in-path
837 (setq file (car comps-in-path)
838 filepath (concat path file))
839 (if (and (not (member file completions))
840 (not (and ignored-extensions
841 (string-match ignored-extensions file)))
842 (or (string-equal path cwd)
843 (not (file-directory-p filepath)))
844 (or (null shell-completion-execonly)
845 (file-executable-p filepath)))
846 (setq completions (cons file completions)))
847 (setq comps-in-path (cdr comps-in-path)))
848 (setq paths (cdr paths)))
849 ;; OK, we've got a list of completions.
850 (let ((success (let ((comint-completion-addsuffix nil))
851 (comint-dynamic-simple-complete pathnondir completions))))
852 (if (and (memq success '(sole shortest)) comint-completion-addsuffix
853 (not (file-directory-p (comint-match-partial-filename))))
854 (insert " "))
855 success)))
856
857
858 (defun shell-match-partial-variable ()
859 "Return the shell variable at point, or nil if none is found."
860 (save-excursion
861 (let ((limit (point)))
862 (if (re-search-backward "[^A-Za-z0-9_{}]" nil 'move)
863 (or (looking-at "\\$") (forward-char 1)))
864 ;; Anchor the search forwards.
865 (if (or (eolp) (looking-at "[^A-Za-z0-9_{}$]"))
866 nil
867 (re-search-forward "\\$?{?[A-Za-z0-9_]*}?" limit)
868 (buffer-substring (match-beginning 0) (match-end 0))))))
869
870
871 (defun shell-dynamic-complete-environment-variable ()
872 "Dynamically complete the environment variable at point.
873 Completes if after a variable, i.e., if it starts with a \"$\".
874 See `shell-dynamic-complete-as-environment-variable'.
875
876 This function is similar to `comint-dynamic-complete-filename', except that it
877 searches `process-environment' for completion candidates. Note that this may
878 not be the same as the interpreter's idea of variable names. The main problem
879 with this type of completion is that `process-environment' is the environment
880 which Emacs started with. Emacs does not track changes to the environment made
881 by the interpreter. Perhaps it would be more accurate if this function was
882 called `shell-dynamic-complete-process-environment-variable'.
883
884 Returns non-nil if successful."
885 (interactive)
886 (let ((variable (shell-match-partial-variable)))
887 (if (and variable (string-match "^\\$" variable))
888 (prog2 (message "Completing variable name...")
889 (shell-dynamic-complete-as-environment-variable)))))
890
891
892 (defun shell-dynamic-complete-as-environment-variable ()
893 "Dynamically complete at point as an environment variable.
894 Used by `shell-dynamic-complete-environment-variable'.
895 Uses `comint-dynamic-simple-complete'."
896 (let* ((var (or (shell-match-partial-variable) ""))
897 (variable (substring var (or (string-match "[^$({]\\|$" var) 0)))
898 (variables (mapcar (function (lambda (x)
899 (substring x 0 (string-match "=" x))))
900 process-environment))
901 (addsuffix comint-completion-addsuffix)
902 (comint-completion-addsuffix nil)
903 (success (comint-dynamic-simple-complete variable variables)))
904 (if (memq success '(sole shortest))
905 (let* ((var (shell-match-partial-variable))
906 (variable (substring var (string-match "[^$({]" var)))
907 (protection (cond ((string-match "{" var) "}")
908 ((string-match "(" var) ")")
909 (t "")))
910 (suffix (cond ((null addsuffix) "")
911 ((file-directory-p
912 (comint-directory (getenv variable))) "/")
913 (t " "))))
914 (insert protection suffix)))
915 success))
916
917
918 (defun shell-replace-by-expanded-directory ()
919 "Expand directory stack reference before point.
920 Directory stack references are of the form \"=digit\" or \"=-\".
921 See `default-directory' and `shell-dirstack'.
922
923 Returns t if successful."
924 (interactive)
925 (if (comint-match-partial-filename)
926 (save-excursion
927 (goto-char (match-beginning 0))
928 (let ((stack (cons default-directory shell-dirstack))
929 (index (cond ((looking-at "=-/?")
930 (length shell-dirstack))
931 ((looking-at "=\\([0-9]+\\)")
932 (string-to-number
933 (buffer-substring
934 (match-beginning 1) (match-end 1)))))))
935 (cond ((null index)
936 nil)
937 ((>= index (length stack))
938 (error "Directory stack not that deep."))
939 (t
940 (replace-match (file-name-as-directory (nth index stack)) t t)
941 (message "Directory item: %d" index)
942 t))))))
943 \f
944 (provide 'shell)
945
946 ;;; shell.el ends here