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