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