Sanitize buffer display handling in calendar.el, a first step.
[emacs.git] / lisp / shell.el
blobd53a460f8d16f6fe4f7aad0d3dbdb9d6467e6e56
1 ;;; shell.el --- specialized comint.el for running the shell
3 ;; Copyright (C) 1988, 1993, 1994, 1995, 1996, 1997, 2000, 2001, 2002,
4 ;; 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
5 ;; Free Software Foundation, Inc.
7 ;; Author: Olin Shivers <shivers@cs.cmu.edu>
8 ;; Simon Marshall <simon@gnu.org>
9 ;; Maintainer: FSF <emacs-devel@gnu.org>
10 ;; Keywords: processes
12 ;; This file is part of GNU Emacs.
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;;; Commentary:
29 ;; This file defines a shell-in-a-buffer package (shell mode) built on
30 ;; top of comint mode. This is actually cmushell with things renamed
31 ;; to replace its counterpart in Emacs 18. cmushell is more
32 ;; featureful, robust, and uniform than the Emacs 18 version.
34 ;; Since this mode is built on top of the general command-interpreter-in-
35 ;; a-buffer mode (comint mode), it shares a common base functionality,
36 ;; and a common set of bindings, with all modes derived from comint mode.
37 ;; This makes these modes easier to use.
39 ;; For documentation on the functionality provided by comint mode, and
40 ;; the hooks available for customising it, see the file comint.el.
41 ;; For further information on shell mode, see the comments below.
43 ;; Needs fixin:
44 ;; When sending text from a source file to a subprocess, the process-mark can
45 ;; move off the window, so you can lose sight of the process interactions.
46 ;; Maybe I should ensure the process mark is in the window when I send
47 ;; text to the process? Switch selectable?
49 ;; YOUR .EMACS FILE
50 ;;=============================================================================
51 ;; Some suggestions for your .emacs file.
53 ;; ;; Define M-# to run some strange command:
54 ;; (eval-after-load "shell"
55 ;; '(define-key shell-mode-map "\M-#" 'shells-dynamic-spell))
57 ;; Brief Command Documentation:
58 ;;============================================================================
59 ;; Comint Mode Commands: (common to shell and all comint-derived modes)
61 ;; m-p comint-previous-input Cycle backwards in input history
62 ;; m-n comint-next-input Cycle forwards
63 ;; m-r comint-previous-matching-input Previous input matching a regexp
64 ;; m-s comint-next-matching-input Next input that matches
65 ;; m-c-l comint-show-output Show last batch of process output
66 ;; return comint-send-input
67 ;; c-d comint-delchar-or-maybe-eof Delete char unless at end of buff.
68 ;; c-c c-a comint-bol Beginning of line; skip prompt
69 ;; c-c c-u comint-kill-input ^u
70 ;; c-c c-w backward-kill-word ^w
71 ;; c-c c-c comint-interrupt-subjob ^c
72 ;; c-c c-z comint-stop-subjob ^z
73 ;; c-c c-\ comint-quit-subjob ^\
74 ;; c-c c-o comint-delete-output Delete last batch of process output
75 ;; c-c c-r comint-show-output Show last batch of process output
76 ;; c-c c-l comint-dynamic-list-input-ring List input history
77 ;; send-invisible Read line w/o echo & send to proc
78 ;; comint-continue-subjob Useful if you accidentally suspend
79 ;; top-level job
80 ;; comint-mode-hook is the comint mode hook.
82 ;; Shell Mode Commands:
83 ;; shell Fires up the shell process
84 ;; tab comint-dynamic-complete Complete filename/command/history
85 ;; m-? comint-dynamic-list-filename-completions
86 ;; List completions in help buffer
87 ;; m-c-f shell-forward-command Forward a shell command
88 ;; m-c-b shell-backward-command Backward a shell command
89 ;; dirs Resync the buffer's dir stack
90 ;; shell-dirtrack-mode Turn dir tracking on/off
91 ;; comint-strip-ctrl-m Remove trailing ^Ms from output
93 ;; The shell mode hook is shell-mode-hook
94 ;; comint-prompt-regexp is initialised to shell-prompt-pattern, for backwards
95 ;; compatibility.
97 ;; Read the rest of this file for more information.
99 ;;; Code:
101 (require 'comint)
103 ;;; Customization and Buffer Variables
105 (defgroup shell nil
106 "Running shell from within Emacs buffers."
107 :group 'processes
108 :group 'unix)
110 (defgroup shell-directories nil
111 "Directory support in shell mode."
112 :group 'shell)
114 (defgroup shell-faces nil
115 "Faces in shell buffers."
116 :group 'shell)
118 ;;;###autoload
119 (defcustom shell-dumb-shell-regexp (purecopy "cmd\\(proxy\\)?\\.exe")
120 "Regexp to match shells that don't save their command history, and
121 don't handle the backslash as a quote character. For shells that
122 match this regexp, Emacs will write out the command history when the
123 shell finishes, and won't remove backslashes when it unquotes shell
124 arguments."
125 :type 'regexp
126 :group 'shell)
128 (defcustom shell-prompt-pattern "^[^#$%>\n]*[#$%>] *"
129 "Regexp to match prompts in the inferior shell.
130 Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well.
131 This variable is used to initialize `comint-prompt-regexp' in the
132 shell buffer.
134 If `comint-use-prompt-regexp' is nil, then this variable is only used
135 to determine paragraph boundaries. See Info node `Shell Prompts' for
136 how Shell mode treats paragraphs.
138 The pattern should probably not match more than one line. If it does,
139 Shell mode may become confused trying to distinguish prompt from input
140 on lines which don't start with a prompt.
142 This is a fine thing to set in your `.emacs' file."
143 :type 'regexp
144 :group 'shell)
146 (defcustom shell-completion-fignore nil
147 "List of suffixes to be disregarded during file/command completion.
148 This variable is used to initialize `comint-completion-fignore' in the shell
149 buffer. The default is nil, for compatibility with most shells.
150 Some people like (\"~\" \"#\" \"%\").
152 This is a fine thing to set in your `.emacs' file."
153 :type '(repeat (string :tag "Suffix"))
154 :group 'shell)
156 (defvar shell-delimiter-argument-list '(?\| ?& ?< ?> ?\( ?\) ?\;)
157 "List of characters to recognize as separate arguments.
158 This variable is used to initialize `comint-delimiter-argument-list' in the
159 shell buffer. The value may depend on the operating system or shell.
161 This is a fine thing to set in your `.emacs' file.")
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 (setq comint-input-ring-file-name
464 (or (getenv "HISTFILE")
465 (cond ((string-equal shell "bash") "~/.bash_history")
466 ((string-equal shell "ksh") "~/.sh_history")
467 (t "~/.history"))))
468 (if (or (equal comint-input-ring-file-name "")
469 (equal (file-truename comint-input-ring-file-name)
470 (file-truename "/dev/null")))
471 (setq comint-input-ring-file-name nil))
472 ;; Arrange to write out the input ring on exit, if the shell doesn't
473 ;; do this itself.
474 (if (and comint-input-ring-file-name
475 (string-match shell-dumb-shell-regexp shell))
476 (set-process-sentinel (get-buffer-process (current-buffer))
477 #'shell-write-history-on-exit))
478 (setq shell-dirstack-query
479 (cond ((string-equal shell "sh") "pwd")
480 ((string-equal shell "ksh") "echo $PWD ~-")
481 (t "dirs")))
482 ;; Bypass a bug in certain versions of bash.
483 (when (string-equal shell "bash")
484 (add-hook 'comint-output-filter-functions
485 'shell-filter-ctrl-a-ctrl-b nil t)))
486 (when shell-dir-cookie-re
487 ;; Watch for magic cookies in the output to track the current dir.
488 (add-hook 'comint-output-filter-functions
489 'shell-dir-cookie-watcher nil t))
490 (comint-read-input-ring t)))
492 (defun shell-filter-ctrl-a-ctrl-b (string)
493 "Remove `^A' and `^B' characters from comint output.
495 Bash uses these characters as internal quoting characters in its
496 prompt. Due to a bug in some bash versions (including 2.03,
497 2.04, and 2.05b), they may erroneously show up when bash is
498 started with the `--noediting' option and Select Graphic
499 Rendition (SGR) control sequences (formerly known as ANSI escape
500 sequences) are used to color the prompt.
502 This function can be put on `comint-output-filter-functions'.
503 The argument STRING is ignored."
504 (let ((pmark (process-mark (get-buffer-process (current-buffer)))))
505 (save-excursion
506 (goto-char (or (and (markerp comint-last-output-start)
507 (marker-position comint-last-output-start))
508 (point-min)))
509 (while (re-search-forward "[\C-a\C-b]" pmark t)
510 (replace-match "")))))
512 (defun shell-write-history-on-exit (process event)
513 "Called when the shell process is stopped.
515 Writes the input history to a history file
516 `comint-input-ring-file-name' using `comint-write-input-ring'
517 and inserts a short message in the shell buffer.
519 This function is a sentinel watching the shell interpreter process.
520 Sentinels will always get the two parameters PROCESS and EVENT."
521 ;; Write history.
522 (comint-write-input-ring)
523 (let ((buf (process-buffer process)))
524 (when (buffer-live-p buf)
525 (with-current-buffer buf
526 (insert (format "\nProcess %s %s\n" process event))))))
528 ;;;###autoload
529 (defun shell (&optional buffer)
530 "Run an inferior shell, with I/O through BUFFER (which defaults to `*shell*').
531 Interactively, a prefix arg means to prompt for BUFFER.
532 If `default-directory' is a remote file name, it is also prompted
533 to change if called with a prefix arg.
535 If BUFFER exists but shell process is not running, make new shell.
536 If BUFFER exists and shell process is running, just switch to BUFFER.
537 Program used comes from variable `explicit-shell-file-name',
538 or (if that is nil) from the ESHELL environment variable,
539 or (if that is nil) from `shell-file-name'.
540 If a file `~/.emacs_SHELLNAME' exists, or `~/.emacs.d/init_SHELLNAME.sh',
541 it is given as initial input (but this may be lost, due to a timing
542 error, if the shell discards input when it starts up).
543 The buffer is put in Shell mode, giving commands for sending input
544 and controlling the subjobs of the shell. See `shell-mode'.
545 See also the variable `shell-prompt-pattern'.
547 To specify a coding system for converting non-ASCII characters
548 in the input and output to the shell, use \\[universal-coding-system-argument]
549 before \\[shell]. You can also specify this with \\[set-buffer-process-coding-system]
550 in the shell buffer, after you start the shell.
551 The default comes from `process-coding-system-alist' and
552 `default-process-coding-system'.
554 The shell file name (sans directories) is used to make a symbol name
555 such as `explicit-csh-args'. If that symbol is a variable,
556 its value is used as a list of arguments when invoking the shell.
557 Otherwise, one argument `-i' is passed to the shell.
559 \(Type \\[describe-mode] in the shell buffer for a list of commands.)"
560 (interactive
561 (list
562 (and current-prefix-arg
563 (prog1
564 (read-buffer "Shell buffer: "
565 (generate-new-buffer-name "*shell*"))
566 (if (file-remote-p default-directory)
567 ;; It must be possible to declare a local default-directory.
568 ;; FIXME: This can't be right: it changes the default-directory
569 ;; of the current-buffer rather than of the *shell* buffer.
570 (setq default-directory
571 (expand-file-name
572 (read-file-name
573 "Default directory: " default-directory default-directory
574 t nil 'file-directory-p))))))))
575 (require 'ansi-color)
576 (setq buffer (if (or buffer (not (derived-mode-p 'shell-mode))
577 (comint-check-proc (current-buffer)))
578 (get-buffer-create (or buffer "*shell*"))
579 ;; If the current buffer is a dead shell buffer, use it.
580 (current-buffer)))
581 ;; Pop to buffer, so that the buffer's window will be correctly set
582 ;; when we call comint (so that comint sets the COLUMNS env var properly).
583 (pop-to-buffer-same-window buffer)
584 (unless (comint-check-proc buffer)
585 (let* ((prog (or explicit-shell-file-name
586 (getenv "ESHELL") shell-file-name))
587 (name (file-name-nondirectory prog))
588 (startfile (concat "~/.emacs_" name))
589 (xargs-name (intern-soft (concat "explicit-" name "-args"))))
590 (unless (file-exists-p startfile)
591 (setq startfile (concat user-emacs-directory "init_" name ".sh")))
592 (apply 'make-comint-in-buffer "shell" buffer prog
593 (if (file-exists-p startfile) startfile)
594 (if (and xargs-name (boundp xargs-name))
595 (symbol-value xargs-name)
596 '("-i")))
597 (shell-mode)))
598 buffer)
600 ;;; Directory tracking
602 ;; This code provides the shell mode input sentinel
603 ;; SHELL-DIRECTORY-TRACKER
604 ;; that tracks cd, pushd, and popd commands issued to the shell, and
605 ;; changes the current directory of the shell buffer accordingly.
607 ;; This is basically a fragile hack, although it's more accurate than
608 ;; the version in Emacs 18's shell.el. It has the following failings:
609 ;; 1. It doesn't know about the cdpath shell variable.
610 ;; 2. It cannot infallibly deal with command sequences, though it does well
611 ;; with these and with ignoring commands forked in another shell with ()s.
612 ;; 3. More generally, any complex command is going to throw it. Otherwise,
613 ;; you'd have to build an entire shell interpreter in Emacs Lisp. Failing
614 ;; that, there's no way to catch shell commands where cd's are buried
615 ;; inside conditional expressions, aliases, and so forth.
617 ;; The whole approach is a crock. Shell aliases mess it up. File sourcing
618 ;; messes it up. You run other processes under the shell; these each have
619 ;; separate working directories, and some have commands for manipulating
620 ;; their w.d.'s (e.g., the lcd command in ftp). Some of these programs have
621 ;; commands that do *not* affect the current w.d. at all, but look like they
622 ;; do (e.g., the cd command in ftp). In shells that allow you job
623 ;; control, you can switch between jobs, all having different w.d.'s. So
624 ;; simply saying %3 can shift your w.d..
626 ;; The solution is to relax, not stress out about it, and settle for
627 ;; a hack that works pretty well in typical circumstances. Remember
628 ;; that a half-assed solution is more in keeping with the spirit of Unix,
629 ;; anyway. Blech.
631 ;; One good hack not implemented here for users of programmable shells
632 ;; is to program up the shell w.d. manipulation commands to output
633 ;; a coded command sequence to the tty. Something like
634 ;; ESC | <cwd> |
635 ;; where <cwd> is the new current working directory. Then trash the
636 ;; directory tracking machinery currently used in this package, and
637 ;; replace it with a process filter that watches for and strips out
638 ;; these messages.
640 (defun shell-dir-cookie-watcher (text)
641 ;; This is fragile: the TEXT could be split into several chunks and we'd
642 ;; miss it. Oh well. It's a best effort anyway. I'd expect that it's
643 ;; rather unusual to have the prompt split into several packets, but
644 ;; I'm sure Murphy will prove me wrong.
645 (when (and shell-dir-cookie-re (string-match shell-dir-cookie-re text))
646 (let ((dir (match-string 1 text)))
647 (cond
648 ((file-name-absolute-p dir) (shell-cd dir))
649 ;; Let's try and see if it seems to be up or down from where we were.
650 ((string-match "\\`\\(.*\\)\\(?:/.*\\)?\n\\(.*/\\)\\1\\(?:/.*\\)?\\'"
651 (setq text (concat dir "\n" default-directory)))
652 (shell-cd (concat (match-string 2 text) dir)))))))
654 (defun shell-directory-tracker (str)
655 "Tracks cd, pushd and popd commands issued to the shell.
656 This function is called on each input passed to the shell.
657 It watches for cd, pushd and popd commands and sets the buffer's
658 default directory to track these commands.
660 You may toggle this tracking on and off with \\[shell-dirtrack-mode].
661 If Emacs gets confused, you can resync with the shell with \\[dirs].
662 \(The `dirtrack' package provides an alternative implementation of this
663 feature - see the function `dirtrack-mode'.)
665 See variables `shell-cd-regexp', `shell-chdrive-regexp', `shell-pushd-regexp',
666 and `shell-popd-regexp', while `shell-pushd-tohome', `shell-pushd-dextract',
667 and `shell-pushd-dunique' control the behavior of the relevant command.
669 Environment variables are expanded, see function `substitute-in-file-name'."
670 (if shell-dirtrackp
671 ;; We fail gracefully if we think the command will fail in the shell.
672 (condition-case chdir-failure
673 (let ((start (progn (string-match
674 (concat "^" shell-command-separator-regexp)
675 str) ; skip whitespace
676 (match-end 0)))
677 end cmd arg1)
678 (while (string-match shell-command-regexp str start)
679 (setq end (match-end 0)
680 cmd (comint-arguments (substring str start end) 0 0)
681 arg1 (comint-arguments (substring str start end) 1 1))
682 (if arg1
683 (setq arg1 (shell-unquote-argument arg1)))
684 (cond ((string-match (concat "\\`\\(" shell-popd-regexp
685 "\\)\\($\\|[ \t]\\)")
686 cmd)
687 (shell-process-popd (comint-substitute-in-file-name arg1)))
688 ((string-match (concat "\\`\\(" shell-pushd-regexp
689 "\\)\\($\\|[ \t]\\)")
690 cmd)
691 (shell-process-pushd (comint-substitute-in-file-name arg1)))
692 ((string-match (concat "\\`\\(" shell-cd-regexp
693 "\\)\\($\\|[ \t]\\)")
694 cmd)
695 (shell-process-cd (comint-substitute-in-file-name arg1)))
696 ((and shell-chdrive-regexp
697 (string-match (concat "\\`\\(" shell-chdrive-regexp
698 "\\)\\($\\|[ \t]\\)")
699 cmd))
700 (shell-process-cd (comint-substitute-in-file-name cmd))))
701 (setq start (progn (string-match shell-command-separator-regexp
702 str end)
703 ;; skip again
704 (match-end 0)))))
705 (error "Couldn't cd"))))
707 (defun shell-unquote-argument (string)
708 "Remove all kinds of shell quoting from STRING."
709 (save-match-data
710 (let ((idx 0) next inside
711 (quote-chars
712 (if (string-match shell-dumb-shell-regexp
713 (file-name-nondirectory
714 (car (process-command (get-buffer-process (current-buffer))))))
715 "['`\"]"
716 "[\\'`\"]")))
717 (while (and (< idx (length string))
718 (setq next (string-match quote-chars string next)))
719 (cond ((= (aref string next) ?\\)
720 (setq string (replace-match "" nil nil string))
721 (setq next (1+ next)))
722 ((and inside (= (aref string next) inside))
723 (setq string (replace-match "" nil nil string))
724 (setq inside nil))
725 (inside
726 (setq next (1+ next)))
728 (setq inside (aref string next))
729 (setq string (replace-match "" nil nil string)))))
730 string)))
732 ;; popd [+n]
733 (defun shell-process-popd (arg)
734 (let ((num (or (shell-extract-num arg) 0)))
735 (cond ((and num (= num 0) shell-dirstack)
736 (shell-cd (shell-prefixed-directory-name (car shell-dirstack)))
737 (setq shell-dirstack (cdr shell-dirstack))
738 (shell-dirstack-message))
739 ((and num (> num 0) (<= num (length shell-dirstack)))
740 (let* ((ds (cons nil shell-dirstack))
741 (cell (nthcdr (1- num) ds)))
742 (rplacd cell (cdr (cdr cell)))
743 (setq shell-dirstack (cdr ds))
744 (shell-dirstack-message)))
746 (error "Couldn't popd")))))
748 ;; Return DIR prefixed with comint-file-name-prefix as appropriate.
749 (defun shell-prefixed-directory-name (dir)
750 (if (= (length comint-file-name-prefix) 0)
752 (if (file-name-absolute-p dir)
753 ;; The name is absolute, so prepend the prefix.
754 (concat comint-file-name-prefix dir)
755 ;; For relative name we assume default-directory already has the prefix.
756 (expand-file-name dir))))
758 ;; cd [dir]
759 (defun shell-process-cd (arg)
760 (let ((new-dir (cond ((zerop (length arg)) (concat comint-file-name-prefix
761 "~"))
762 ((string-equal "-" arg) shell-last-dir)
763 (t (shell-prefixed-directory-name arg)))))
764 (setq shell-last-dir default-directory)
765 (shell-cd new-dir)
766 (shell-dirstack-message)))
768 ;; pushd [+n | dir]
769 (defun shell-process-pushd (arg)
770 (let ((num (shell-extract-num arg)))
771 (cond ((zerop (length arg))
772 ;; no arg -- swap pwd and car of stack unless shell-pushd-tohome
773 (cond (shell-pushd-tohome
774 (shell-process-pushd (concat comint-file-name-prefix "~")))
775 (shell-dirstack
776 (let ((old default-directory))
777 (shell-cd (car shell-dirstack))
778 (setq shell-dirstack (cons old (cdr shell-dirstack)))
779 (shell-dirstack-message)))
781 (message "Directory stack empty."))))
782 ((numberp num)
783 ;; pushd +n
784 (cond ((> num (length shell-dirstack))
785 (message "Directory stack not that deep."))
786 ((= num 0)
787 (error (message "Couldn't cd")))
788 (shell-pushd-dextract
789 (let ((dir (nth (1- num) shell-dirstack)))
790 (shell-process-popd arg)
791 (shell-process-pushd default-directory)
792 (shell-cd dir)
793 (shell-dirstack-message)))
795 (let* ((ds (cons default-directory shell-dirstack))
796 (dslen (length ds))
797 (front (nthcdr num ds))
798 (back (reverse (nthcdr (- dslen num) (reverse ds))))
799 (new-ds (append front back)))
800 (shell-cd (car new-ds))
801 (setq shell-dirstack (cdr new-ds))
802 (shell-dirstack-message)))))
804 ;; pushd <dir>
805 (let ((old-wd default-directory))
806 (shell-cd (shell-prefixed-directory-name arg))
807 (if (or (null shell-pushd-dunique)
808 (not (member old-wd shell-dirstack)))
809 (setq shell-dirstack (cons old-wd shell-dirstack)))
810 (shell-dirstack-message))))))
812 ;; If STR is of the form +n, for n>0, return n. Otherwise, nil.
813 (defun shell-extract-num (str)
814 (and (string-match "^\\+[1-9][0-9]*$" str)
815 (string-to-number str)))
817 (defvaralias 'shell-dirtrack-mode 'shell-dirtrackp)
818 (define-minor-mode shell-dirtrack-mode
819 "Turn directory tracking on and off in a shell buffer.
820 The `dirtrack' package provides an alternative implementation of this
821 feature - see the function `dirtrack-mode'."
822 nil nil nil
823 (setq list-buffers-directory (if shell-dirtrack-mode default-directory))
824 (if shell-dirtrack-mode
825 (add-hook 'comint-input-filter-functions 'shell-directory-tracker nil t)
826 (remove-hook 'comint-input-filter-functions 'shell-directory-tracker t)))
828 (define-obsolete-function-alias 'shell-dirtrack-toggle 'shell-dirtrack-mode
829 "23.1")
831 (defun shell-cd (dir)
832 "Do normal `cd' to DIR, and set `list-buffers-directory'."
833 (cd dir)
834 (if shell-dirtrackp
835 (setq list-buffers-directory default-directory)))
837 (defun shell-resync-dirs ()
838 "Resync the buffer's idea of the current directory stack.
839 This command queries the shell with the command bound to
840 `shell-dirstack-query' (default \"dirs\"), reads the next
841 line output and parses it to form the new directory stack.
842 DON'T issue this command unless the buffer is at a shell prompt.
843 Also, note that if some other subprocess decides to do output
844 immediately after the query, its output will be taken as the
845 new directory stack -- you lose. If this happens, just do the
846 command again."
847 (interactive)
848 (let* ((proc (get-buffer-process (current-buffer)))
849 (pmark (process-mark proc))
850 (started-at-pmark (= (point) (marker-position pmark))))
851 (save-excursion
852 (goto-char pmark)
853 ;; If the process echoes commands, don't insert a fake command in
854 ;; the buffer or it will appear twice.
855 (unless comint-process-echoes
856 (insert shell-dirstack-query) (insert "\n"))
857 (sit-for 0) ; force redisplay
858 (comint-send-string proc shell-dirstack-query)
859 (comint-send-string proc "\n")
860 (set-marker pmark (point))
861 (let ((pt (point))
862 (regexp
863 (concat
864 (if comint-process-echoes
865 ;; Skip command echo if the process echoes
866 (concat "\\(" (regexp-quote shell-dirstack-query) "\n\\)")
867 "\\(\\)")
868 "\\(.+\n\\)")))
869 ;; This extra newline prevents the user's pending input from spoofing us.
870 (insert "\n") (backward-char 1)
871 ;; Wait for one line.
872 (while (not (looking-at regexp))
873 (accept-process-output proc)
874 (goto-char pt)))
875 (goto-char pmark) (delete-char 1) ; remove the extra newline
876 ;; That's the dirlist. grab it & parse it.
877 (let* ((dl (buffer-substring (match-beginning 2) (1- (match-end 2))))
878 (dl-len (length dl))
879 (ds '()) ; new dir stack
880 (i 0))
881 (while (< i dl-len)
882 ;; regexp = optional whitespace, (non-whitespace), optional whitespace
883 (string-match "\\s *\\(\\S +\\)\\s *" dl i) ; pick off next dir
884 (setq ds (cons (concat comint-file-name-prefix
885 (substring dl (match-beginning 1)
886 (match-end 1)))
887 ds))
888 (setq i (match-end 0)))
889 (let ((ds (nreverse ds)))
890 (condition-case nil
891 (progn (shell-cd (car ds))
892 (setq shell-dirstack (cdr ds)
893 shell-last-dir (car shell-dirstack))
894 (shell-dirstack-message))
895 (error (message "Couldn't cd"))))))
896 (if started-at-pmark (goto-char (marker-position pmark)))))
898 ;; For your typing convenience:
899 (defalias 'dirs 'shell-resync-dirs)
902 ;; Show the current dirstack on the message line.
903 ;; Pretty up dirs a bit by changing "/usr/jqr/foo" to "~/foo".
904 ;; (This isn't necessary if the dirlisting is generated with a simple "dirs".)
905 ;; All the commands that mung the buffer's dirstack finish by calling
906 ;; this guy.
907 (defun shell-dirstack-message ()
908 (when shell-dirtrack-verbose
909 (let* ((msg "")
910 (ds (cons default-directory shell-dirstack))
911 (home (expand-file-name (concat comint-file-name-prefix "~/")))
912 (homelen (length home)))
913 (while ds
914 (let ((dir (car ds)))
915 (and (>= (length dir) homelen)
916 (string= home (substring dir 0 homelen))
917 (setq dir (concat "~/" (substring dir homelen))))
918 ;; Strip off comint-file-name-prefix if present.
919 (and comint-file-name-prefix
920 (>= (length dir) (length comint-file-name-prefix))
921 (string= comint-file-name-prefix
922 (substring dir 0 (length comint-file-name-prefix)))
923 (setq dir (substring dir (length comint-file-name-prefix)))
924 (setcar ds dir))
925 (setq msg (concat msg (directory-file-name dir) " "))
926 (setq ds (cdr ds))))
927 (message "%s" msg))))
929 ;; This was mostly copied from shell-resync-dirs.
930 (defun shell-snarf-envar (var)
931 "Return as a string the shell's value of environment variable VAR."
932 (let* ((cmd (format "printenv '%s'\n" var))
933 (proc (get-buffer-process (current-buffer)))
934 (pmark (process-mark proc)))
935 (goto-char pmark)
936 (insert cmd)
937 (sit-for 0) ; force redisplay
938 (comint-send-string proc cmd)
939 (set-marker pmark (point))
940 (let ((pt (point))) ; wait for 1 line
941 ;; This extra newline prevents the user's pending input from spoofing us.
942 (insert "\n") (backward-char 1)
943 (while (not (looking-at ".+\n"))
944 (accept-process-output proc)
945 (goto-char pt)))
946 (goto-char pmark) (delete-char 1) ; remove the extra newline
947 (buffer-substring (match-beginning 0) (1- (match-end 0)))))
949 (defun shell-copy-environment-variable (variable)
950 "Copy the environment variable VARIABLE from the subshell to Emacs.
951 This command reads the value of the specified environment variable
952 in the shell, and sets the same environment variable in Emacs
953 \(what `getenv' in Emacs would return) to that value.
954 That value will affect any new subprocesses that you subsequently start
955 from Emacs."
956 (interactive (list (read-envvar-name "\
957 Copy Shell environment variable to Emacs: ")))
958 (setenv variable (shell-snarf-envar variable)))
960 (defun shell-forward-command (&optional arg)
961 "Move forward across ARG shell command(s). Does not cross lines.
962 See `shell-command-regexp'."
963 (interactive "p")
964 (let ((limit (line-end-position)))
965 (if (re-search-forward (concat shell-command-regexp "\\([;&|][\t ]*\\)+")
966 limit 'move arg)
967 (skip-syntax-backward " "))))
970 (defun shell-backward-command (&optional arg)
971 "Move backward across ARG shell command(s). Does not cross lines.
972 See `shell-command-regexp'."
973 (interactive "p")
974 (let ((limit (save-excursion (comint-bol nil) (point))))
975 (when (> limit (point))
976 (setq limit (line-beginning-position)))
977 (skip-syntax-backward " " limit)
978 (if (re-search-backward
979 (format "[;&|]+[\t ]*\\(%s\\)" shell-command-regexp) limit 'move arg)
980 (progn (goto-char (match-beginning 1))
981 (skip-chars-forward ";&|")))))
983 (defun shell-dynamic-complete-command ()
984 "Dynamically complete the command at point.
985 This function is similar to `comint-dynamic-complete-filename', except that it
986 searches `exec-path' (minus the trailing Emacs library path) for completion
987 candidates. Note that this may not be the same as the shell's idea of the
988 path.
990 Completion is dependent on the value of `shell-completion-execonly', plus
991 those that effect file completion. See `shell-dynamic-complete-as-command'.
993 Returns t if successful."
994 (interactive)
995 (let ((filename (comint-match-partial-filename)))
996 (if (and filename
997 (save-match-data (not (string-match "[~/]" filename)))
998 (eq (match-beginning 0)
999 (save-excursion (shell-backward-command 1) (point))))
1000 (prog2 (unless (window-minibuffer-p (selected-window))
1001 (message "Completing command name..."))
1002 (shell-dynamic-complete-as-command)))))
1005 (defun shell-dynamic-complete-as-command ()
1006 "Dynamically complete at point as a command.
1007 See `shell-dynamic-complete-filename'. Returns t if successful."
1008 (let* ((filename (or (comint-match-partial-filename) ""))
1009 (filenondir (file-name-nondirectory filename))
1010 (path-dirs (cdr (reverse exec-path)))
1011 (cwd (file-name-as-directory (expand-file-name default-directory)))
1012 (ignored-extensions
1013 (and comint-completion-fignore
1014 (mapconcat (function (lambda (x) (concat (regexp-quote x) "$")))
1015 comint-completion-fignore "\\|")))
1016 (dir "") (comps-in-dir ())
1017 (file "") (abs-file-name "") (completions ()))
1018 ;; Go thru each dir in the search path, finding completions.
1019 (while path-dirs
1020 (setq dir (file-name-as-directory (comint-directory (or (car path-dirs) ".")))
1021 comps-in-dir (and (file-accessible-directory-p dir)
1022 (file-name-all-completions filenondir dir)))
1023 ;; Go thru each completion found, to see whether it should be used.
1024 (while comps-in-dir
1025 (setq file (car comps-in-dir)
1026 abs-file-name (concat dir file))
1027 (if (and (not (member file completions))
1028 (not (and ignored-extensions
1029 (string-match ignored-extensions file)))
1030 (or (string-equal dir cwd)
1031 (not (file-directory-p abs-file-name)))
1032 (or (null shell-completion-execonly)
1033 (file-executable-p abs-file-name)))
1034 (setq completions (cons file completions)))
1035 (setq comps-in-dir (cdr comps-in-dir)))
1036 (setq path-dirs (cdr path-dirs)))
1037 ;; OK, we've got a list of completions.
1038 (let ((success (let ((comint-completion-addsuffix nil))
1039 (comint-dynamic-simple-complete filenondir completions))))
1040 (if (and (memq success '(sole shortest)) comint-completion-addsuffix
1041 (not (file-directory-p (comint-match-partial-filename))))
1042 (insert " "))
1043 success)))
1045 (defun shell-dynamic-complete-filename ()
1046 "Dynamically complete the filename at point.
1047 This completes only if point is at a suitable position for a
1048 filename argument."
1049 (interactive)
1050 (let ((opoint (point))
1051 (beg (comint-line-beginning-position)))
1052 (when (save-excursion
1053 (goto-char (if (re-search-backward "[;|&]" beg t)
1054 (match-end 0)
1055 beg))
1056 (re-search-forward "[^ \t][ \t]" opoint t))
1057 (comint-dynamic-complete-as-filename))))
1059 (defun shell-match-partial-variable ()
1060 "Return the shell variable at point, or nil if none is found."
1061 (save-excursion
1062 (let ((limit (point)))
1063 (if (re-search-backward "[^A-Za-z0-9_{}]" nil 'move)
1064 (or (looking-at "\\$") (forward-char 1)))
1065 ;; Anchor the search forwards.
1066 (if (or (eolp) (looking-at "[^A-Za-z0-9_{}$]"))
1068 (re-search-forward "\\$?{?[A-Za-z0-9_]*}?" limit)
1069 (buffer-substring (match-beginning 0) (match-end 0))))))
1071 (defun shell-dynamic-complete-environment-variable ()
1072 "Dynamically complete the environment variable at point.
1073 Completes if after a variable, i.e., if it starts with a \"$\".
1074 See `shell-dynamic-complete-as-environment-variable'.
1076 This function is similar to `comint-dynamic-complete-filename', except that it
1077 searches `process-environment' for completion candidates. Note that this may
1078 not be the same as the interpreter's idea of variable names. The main problem
1079 with this type of completion is that `process-environment' is the environment
1080 which Emacs started with. Emacs does not track changes to the environment made
1081 by the interpreter. Perhaps it would be more accurate if this function was
1082 called `shell-dynamic-complete-process-environment-variable'.
1084 Returns non-nil if successful."
1085 (interactive)
1086 (let ((variable (shell-match-partial-variable)))
1087 (if (and variable (string-match "^\\$" variable))
1088 (prog2 (unless (window-minibuffer-p (selected-window))
1089 (message "Completing variable name..."))
1090 (shell-dynamic-complete-as-environment-variable)))))
1093 (defun shell-dynamic-complete-as-environment-variable ()
1094 "Dynamically complete at point as an environment variable.
1095 Used by `shell-dynamic-complete-environment-variable'.
1096 Uses `comint-dynamic-simple-complete'."
1097 (let* ((var (or (shell-match-partial-variable) ""))
1098 (variable (substring var (or (string-match "[^$({]\\|$" var) 0)))
1099 (variables (mapcar (function (lambda (x)
1100 (substring x 0 (string-match "=" x))))
1101 process-environment))
1102 (addsuffix comint-completion-addsuffix)
1103 (comint-completion-addsuffix nil)
1104 (success (comint-dynamic-simple-complete variable variables)))
1105 (if (memq success '(sole shortest))
1106 (let* ((var (shell-match-partial-variable))
1107 (variable (substring var (string-match "[^$({]" var)))
1108 (protection (cond ((string-match "{" var) "}")
1109 ((string-match "(" var) ")")
1110 (t "")))
1111 (suffix (cond ((null addsuffix) "")
1112 ((file-directory-p
1113 (comint-directory (getenv variable))) "/")
1114 (t " "))))
1115 (insert protection suffix)))
1116 success))
1119 (defun shell-replace-by-expanded-directory ()
1120 "Expand directory stack reference before point.
1121 Directory stack references are of the form \"=digit\" or \"=-\".
1122 See `default-directory' and `shell-dirstack'.
1124 Returns t if successful."
1125 (interactive)
1126 (if (comint-match-partial-filename)
1127 (save-excursion
1128 (goto-char (match-beginning 0))
1129 (let ((stack (cons default-directory shell-dirstack))
1130 (index (cond ((looking-at "=-/?")
1131 (length shell-dirstack))
1132 ((looking-at "=\\([0-9]+\\)/?")
1133 (string-to-number
1134 (buffer-substring
1135 (match-beginning 1) (match-end 1)))))))
1136 (cond ((null index)
1137 nil)
1138 ((>= index (length stack))
1139 (error "Directory stack not that deep"))
1141 (replace-match (file-name-as-directory (nth index stack)) t t)
1142 (message "Directory item: %d" index)
1143 t))))))
1145 (provide 'shell)
1147 ;;; shell.el ends here