Fix dedicatedness check in display-buffer
[emacs.git] / lisp / shell.el
blob1817d221273a43ca38f07c2e315a4dcf5ad89040
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 (put 'shell-mode 'mode-class 'special)
373 (define-derived-mode shell-mode comint-mode "Shell"
374 "Major mode for interacting with an inferior shell.\\<shell-mode-map>
375 \\[comint-send-input] after the end of the process' output sends the text from
376 the end of process to the end of the current line.
377 \\[comint-send-input] before end of process output copies the current line minus the prompt to
378 the end of the buffer and sends it (\\[comint-copy-old-input] just copies the current line).
379 \\[send-invisible] reads a line of text without echoing it, and sends it to
380 the shell. This is useful for entering passwords. Or, add the function
381 `comint-watch-for-password-prompt' to `comint-output-filter-functions'.
383 If you want to make multiple shell buffers, rename the `*shell*' buffer
384 using \\[rename-buffer] or \\[rename-uniquely] and start a new shell.
386 If you want to make shell buffers limited in length, add the function
387 `comint-truncate-buffer' to `comint-output-filter-functions'.
389 If you accidentally suspend your process, use \\[comint-continue-subjob]
390 to continue it.
392 `cd', `pushd' and `popd' commands given to the shell are watched by Emacs to
393 keep this buffer's default directory the same as the shell's working directory.
394 While directory tracking is enabled, the shell's working directory is displayed
395 by \\[list-buffers] or \\[mouse-buffer-menu] in the `File' field.
396 \\[dirs] queries the shell and resyncs Emacs' idea of what the current
397 directory stack is.
398 \\[shell-dirtrack-mode] turns directory tracking on and off.
399 \(The `dirtrack' package provides an alternative implementation of this
400 feature - see the function `dirtrack-mode'.)
402 \\{shell-mode-map}
403 Customization: Entry to this mode runs the hooks on `comint-mode-hook' and
404 `shell-mode-hook' (in that order). Before each input, the hooks on
405 `comint-input-filter-functions' are run. After each shell output, the hooks
406 on `comint-output-filter-functions' are run.
408 Variables `shell-cd-regexp', `shell-chdrive-regexp', `shell-pushd-regexp'
409 and `shell-popd-regexp' are used to match their respective commands,
410 while `shell-pushd-tohome', `shell-pushd-dextract' and `shell-pushd-dunique'
411 control the behavior of the relevant command.
413 Variables `comint-completion-autolist', `comint-completion-addsuffix',
414 `comint-completion-recexact' and `comint-completion-fignore' control the
415 behavior of file name, command name and variable name completion. Variable
416 `shell-completion-execonly' controls the behavior of command name completion.
417 Variable `shell-completion-fignore' is used to initialize the value of
418 `comint-completion-fignore'.
420 Variables `comint-input-ring-file-name' and `comint-input-autoexpand' control
421 the initialization of the input ring history, and history expansion.
423 Variables `comint-output-filter-functions', a hook, and
424 `comint-scroll-to-bottom-on-input' and `comint-scroll-to-bottom-on-output'
425 control whether input and output cause the window to scroll to the end of the
426 buffer."
427 (setq comint-prompt-regexp shell-prompt-pattern)
428 (setq comint-completion-fignore shell-completion-fignore)
429 (setq comint-delimiter-argument-list shell-delimiter-argument-list)
430 (setq comint-file-name-chars shell-file-name-chars)
431 (setq comint-file-name-quote-list shell-file-name-quote-list)
432 (set (make-local-variable 'comint-dynamic-complete-functions)
433 shell-dynamic-complete-functions)
434 (set (make-local-variable 'paragraph-separate) "\\'")
435 (make-local-variable 'paragraph-start)
436 (setq paragraph-start comint-prompt-regexp)
437 (make-local-variable 'font-lock-defaults)
438 (setq font-lock-defaults '(shell-font-lock-keywords t))
439 (make-local-variable 'shell-dirstack)
440 (setq shell-dirstack nil)
441 (make-local-variable 'shell-last-dir)
442 (setq shell-last-dir nil)
443 (setq comint-input-autoexpand shell-input-autoexpand)
444 (shell-dirtrack-mode 1)
445 ;; This is not really correct, since the shell buffer does not really
446 ;; edit this directory. But it is useful in the buffer list and menus.
447 (setq list-buffers-directory (expand-file-name default-directory))
448 ;; shell-dependent assignments.
449 (when (ring-empty-p comint-input-ring)
450 (let ((shell (file-name-nondirectory (car
451 (process-command (get-buffer-process (current-buffer)))))))
452 (setq comint-input-ring-file-name
453 (or (getenv "HISTFILE")
454 (cond ((string-equal shell "bash") "~/.bash_history")
455 ((string-equal shell "ksh") "~/.sh_history")
456 (t "~/.history"))))
457 (if (or (equal comint-input-ring-file-name "")
458 (equal (file-truename comint-input-ring-file-name)
459 (file-truename "/dev/null")))
460 (setq comint-input-ring-file-name nil))
461 ;; Arrange to write out the input ring on exit, if the shell doesn't
462 ;; do this itself.
463 (if (and comint-input-ring-file-name
464 (string-match shell-dumb-shell-regexp shell))
465 (set-process-sentinel (get-buffer-process (current-buffer))
466 #'shell-write-history-on-exit))
467 (setq shell-dirstack-query
468 (cond ((string-equal shell "sh") "pwd")
469 ((string-equal shell "ksh") "echo $PWD ~-")
470 (t "dirs")))
471 ;; Bypass a bug in certain versions of bash.
472 (when (string-equal shell "bash")
473 (add-hook 'comint-output-filter-functions
474 'shell-filter-ctrl-a-ctrl-b nil t)))
475 (comint-read-input-ring t)))
477 (defun shell-filter-ctrl-a-ctrl-b (string)
478 "Remove `^A' and `^B' characters from comint output.
480 Bash uses these characters as internal quoting characters in its
481 prompt. Due to a bug in some bash versions (including 2.03,
482 2.04, and 2.05b), they may erroneously show up when bash is
483 started with the `--noediting' option and Select Graphic
484 Rendition (SGR) control sequences (formerly known as ANSI escape
485 sequences) are used to color the prompt.
487 This function can be put on `comint-output-filter-functions'.
488 The argument STRING is ignored."
489 (let ((pmark (process-mark (get-buffer-process (current-buffer)))))
490 (save-excursion
491 (goto-char (or (and (markerp comint-last-output-start)
492 (marker-position comint-last-output-start))
493 (point-min)))
494 (while (re-search-forward "[\C-a\C-b]" pmark t)
495 (replace-match "")))))
497 (defun shell-write-history-on-exit (process event)
498 "Called when the shell process is stopped.
500 Writes the input history to a history file
501 `comint-input-ring-file-name' using `comint-write-input-ring'
502 and inserts a short message in the shell buffer.
504 This function is a sentinel watching the shell interpreter process.
505 Sentinels will always get the two parameters PROCESS and EVENT."
506 ;; Write history.
507 (comint-write-input-ring)
508 (let ((buf (process-buffer process)))
509 (when (buffer-live-p buf)
510 (with-current-buffer buf
511 (insert (format "\nProcess %s %s\n" process event))))))
513 ;;;###autoload
514 (defun shell (&optional buffer)
515 "Run an inferior shell, with I/O through BUFFER (which defaults to `*shell*').
516 Interactively, a prefix arg means to prompt for BUFFER.
517 If `default-directory' is a remote file name, it is also prompted
518 to change if called with a prefix arg.
520 If BUFFER exists but shell process is not running, make new shell.
521 If BUFFER exists and shell process is running, just switch to BUFFER.
522 Program used comes from variable `explicit-shell-file-name',
523 or (if that is nil) from the ESHELL environment variable,
524 or (if that is nil) from `shell-file-name'.
525 If a file `~/.emacs_SHELLNAME' exists, or `~/.emacs.d/init_SHELLNAME.sh',
526 it is given as initial input (but this may be lost, due to a timing
527 error, if the shell discards input when it starts up).
528 The buffer is put in Shell mode, giving commands for sending input
529 and controlling the subjobs of the shell. See `shell-mode'.
530 See also the variable `shell-prompt-pattern'.
532 To specify a coding system for converting non-ASCII characters
533 in the input and output to the shell, use \\[universal-coding-system-argument]
534 before \\[shell]. You can also specify this with \\[set-buffer-process-coding-system]
535 in the shell buffer, after you start the shell.
536 The default comes from `process-coding-system-alist' and
537 `default-process-coding-system'.
539 The shell file name (sans directories) is used to make a symbol name
540 such as `explicit-csh-args'. If that symbol is a variable,
541 its value is used as a list of arguments when invoking the shell.
542 Otherwise, one argument `-i' is passed to the shell.
544 \(Type \\[describe-mode] in the shell buffer for a list of commands.)"
545 (interactive
546 (list
547 (and current-prefix-arg
548 (prog1
549 (read-buffer "Shell buffer: "
550 (generate-new-buffer-name "*shell*"))
551 (if (file-remote-p default-directory)
552 ;; It must be possible to declare a local default-directory.
553 (setq default-directory
554 (expand-file-name
555 (read-file-name
556 "Default directory: " default-directory default-directory
557 t nil 'file-directory-p))))))))
558 (require 'ansi-color)
559 (setq buffer (get-buffer-create (or buffer "*shell*")))
560 ;; Pop to buffer, so that the buffer's window will be correctly set
561 ;; when we call comint (so that comint sets the COLUMNS env var properly).
562 (pop-to-buffer-same-window buffer)
563 (unless (comint-check-proc buffer)
564 (let* ((prog (or explicit-shell-file-name
565 (getenv "ESHELL") shell-file-name))
566 (name (file-name-nondirectory prog))
567 (startfile (concat "~/.emacs_" name))
568 (xargs-name (intern-soft (concat "explicit-" name "-args"))))
569 (unless (file-exists-p startfile)
570 (setq startfile (concat user-emacs-directory "init_" name ".sh")))
571 (apply 'make-comint-in-buffer "shell" buffer prog
572 (if (file-exists-p startfile) startfile)
573 (if (and xargs-name (boundp xargs-name))
574 (symbol-value xargs-name)
575 '("-i")))
576 (shell-mode)))
577 buffer)
579 ;;; Directory tracking
581 ;; This code provides the shell mode input sentinel
582 ;; SHELL-DIRECTORY-TRACKER
583 ;; that tracks cd, pushd, and popd commands issued to the shell, and
584 ;; changes the current directory of the shell buffer accordingly.
586 ;; This is basically a fragile hack, although it's more accurate than
587 ;; the version in Emacs 18's shell.el. It has the following failings:
588 ;; 1. It doesn't know about the cdpath shell variable.
589 ;; 2. It cannot infallibly deal with command sequences, though it does well
590 ;; with these and with ignoring commands forked in another shell with ()s.
591 ;; 3. More generally, any complex command is going to throw it. Otherwise,
592 ;; you'd have to build an entire shell interpreter in Emacs Lisp. Failing
593 ;; that, there's no way to catch shell commands where cd's are buried
594 ;; inside conditional expressions, aliases, and so forth.
596 ;; The whole approach is a crock. Shell aliases mess it up. File sourcing
597 ;; messes it up. You run other processes under the shell; these each have
598 ;; separate working directories, and some have commands for manipulating
599 ;; their w.d.'s (e.g., the lcd command in ftp). Some of these programs have
600 ;; commands that do *not* affect the current w.d. at all, but look like they
601 ;; do (e.g., the cd command in ftp). In shells that allow you job
602 ;; control, you can switch between jobs, all having different w.d.'s. So
603 ;; simply saying %3 can shift your w.d..
605 ;; The solution is to relax, not stress out about it, and settle for
606 ;; a hack that works pretty well in typical circumstances. Remember
607 ;; that a half-assed solution is more in keeping with the spirit of Unix,
608 ;; anyway. Blech.
610 ;; One good hack not implemented here for users of programmable shells
611 ;; is to program up the shell w.d. manipulation commands to output
612 ;; a coded command sequence to the tty. Something like
613 ;; ESC | <cwd> |
614 ;; where <cwd> is the new current working directory. Then trash the
615 ;; directory tracking machinery currently used in this package, and
616 ;; replace it with a process filter that watches for and strips out
617 ;; these messages.
619 (defun shell-directory-tracker (str)
620 "Tracks cd, pushd and popd commands issued to the shell.
621 This function is called on each input passed to the shell.
622 It watches for cd, pushd and popd commands and sets the buffer's
623 default directory to track these commands.
625 You may toggle this tracking on and off with \\[shell-dirtrack-mode].
626 If Emacs gets confused, you can resync with the shell with \\[dirs].
627 \(The `dirtrack' package provides an alternative implementation of this
628 feature - see the function `dirtrack-mode'.)
630 See variables `shell-cd-regexp', `shell-chdrive-regexp', `shell-pushd-regexp',
631 and `shell-popd-regexp', while `shell-pushd-tohome', `shell-pushd-dextract',
632 and `shell-pushd-dunique' control the behavior of the relevant command.
634 Environment variables are expanded, see function `substitute-in-file-name'."
635 (if shell-dirtrackp
636 ;; We fail gracefully if we think the command will fail in the shell.
637 (condition-case chdir-failure
638 (let ((start (progn (string-match
639 (concat "^" shell-command-separator-regexp)
640 str) ; skip whitespace
641 (match-end 0)))
642 end cmd arg1)
643 (while (string-match shell-command-regexp str start)
644 (setq end (match-end 0)
645 cmd (comint-arguments (substring str start end) 0 0)
646 arg1 (comint-arguments (substring str start end) 1 1))
647 (if arg1
648 (setq arg1 (shell-unquote-argument arg1)))
649 (cond ((string-match (concat "\\`\\(" shell-popd-regexp
650 "\\)\\($\\|[ \t]\\)")
651 cmd)
652 (shell-process-popd (comint-substitute-in-file-name arg1)))
653 ((string-match (concat "\\`\\(" shell-pushd-regexp
654 "\\)\\($\\|[ \t]\\)")
655 cmd)
656 (shell-process-pushd (comint-substitute-in-file-name arg1)))
657 ((string-match (concat "\\`\\(" shell-cd-regexp
658 "\\)\\($\\|[ \t]\\)")
659 cmd)
660 (shell-process-cd (comint-substitute-in-file-name arg1)))
661 ((and shell-chdrive-regexp
662 (string-match (concat "\\`\\(" shell-chdrive-regexp
663 "\\)\\($\\|[ \t]\\)")
664 cmd))
665 (shell-process-cd (comint-substitute-in-file-name cmd))))
666 (setq start (progn (string-match shell-command-separator-regexp
667 str end)
668 ;; skip again
669 (match-end 0)))))
670 (error "Couldn't cd"))))
672 (defun shell-unquote-argument (string)
673 "Remove all kinds of shell quoting from STRING."
674 (save-match-data
675 (let ((idx 0) next inside
676 (quote-chars
677 (if (string-match shell-dumb-shell-regexp
678 (file-name-nondirectory
679 (car (process-command (get-buffer-process (current-buffer))))))
680 "['`\"]"
681 "[\\'`\"]")))
682 (while (and (< idx (length string))
683 (setq next (string-match quote-chars string next)))
684 (cond ((= (aref string next) ?\\)
685 (setq string (replace-match "" nil nil string))
686 (setq next (1+ next)))
687 ((and inside (= (aref string next) inside))
688 (setq string (replace-match "" nil nil string))
689 (setq inside nil))
690 (inside
691 (setq next (1+ next)))
693 (setq inside (aref string next))
694 (setq string (replace-match "" nil nil string)))))
695 string)))
697 ;; popd [+n]
698 (defun shell-process-popd (arg)
699 (let ((num (or (shell-extract-num arg) 0)))
700 (cond ((and num (= num 0) shell-dirstack)
701 (shell-cd (shell-prefixed-directory-name (car shell-dirstack)))
702 (setq shell-dirstack (cdr shell-dirstack))
703 (shell-dirstack-message))
704 ((and num (> num 0) (<= num (length shell-dirstack)))
705 (let* ((ds (cons nil shell-dirstack))
706 (cell (nthcdr (1- num) ds)))
707 (rplacd cell (cdr (cdr cell)))
708 (setq shell-dirstack (cdr ds))
709 (shell-dirstack-message)))
711 (error "Couldn't popd")))))
713 ;; Return DIR prefixed with comint-file-name-prefix as appropriate.
714 (defun shell-prefixed-directory-name (dir)
715 (if (= (length comint-file-name-prefix) 0)
717 (if (file-name-absolute-p dir)
718 ;; The name is absolute, so prepend the prefix.
719 (concat comint-file-name-prefix dir)
720 ;; For relative name we assume default-directory already has the prefix.
721 (expand-file-name dir))))
723 ;; cd [dir]
724 (defun shell-process-cd (arg)
725 (let ((new-dir (cond ((zerop (length arg)) (concat comint-file-name-prefix
726 "~"))
727 ((string-equal "-" arg) shell-last-dir)
728 (t (shell-prefixed-directory-name arg)))))
729 (setq shell-last-dir default-directory)
730 (shell-cd new-dir)
731 (shell-dirstack-message)))
733 ;; pushd [+n | dir]
734 (defun shell-process-pushd (arg)
735 (let ((num (shell-extract-num arg)))
736 (cond ((zerop (length arg))
737 ;; no arg -- swap pwd and car of stack unless shell-pushd-tohome
738 (cond (shell-pushd-tohome
739 (shell-process-pushd (concat comint-file-name-prefix "~")))
740 (shell-dirstack
741 (let ((old default-directory))
742 (shell-cd (car shell-dirstack))
743 (setq shell-dirstack (cons old (cdr shell-dirstack)))
744 (shell-dirstack-message)))
746 (message "Directory stack empty."))))
747 ((numberp num)
748 ;; pushd +n
749 (cond ((> num (length shell-dirstack))
750 (message "Directory stack not that deep."))
751 ((= num 0)
752 (error (message "Couldn't cd")))
753 (shell-pushd-dextract
754 (let ((dir (nth (1- num) shell-dirstack)))
755 (shell-process-popd arg)
756 (shell-process-pushd default-directory)
757 (shell-cd dir)
758 (shell-dirstack-message)))
760 (let* ((ds (cons default-directory shell-dirstack))
761 (dslen (length ds))
762 (front (nthcdr num ds))
763 (back (reverse (nthcdr (- dslen num) (reverse ds))))
764 (new-ds (append front back)))
765 (shell-cd (car new-ds))
766 (setq shell-dirstack (cdr new-ds))
767 (shell-dirstack-message)))))
769 ;; pushd <dir>
770 (let ((old-wd default-directory))
771 (shell-cd (shell-prefixed-directory-name arg))
772 (if (or (null shell-pushd-dunique)
773 (not (member old-wd shell-dirstack)))
774 (setq shell-dirstack (cons old-wd shell-dirstack)))
775 (shell-dirstack-message))))))
777 ;; If STR is of the form +n, for n>0, return n. Otherwise, nil.
778 (defun shell-extract-num (str)
779 (and (string-match "^\\+[1-9][0-9]*$" str)
780 (string-to-number str)))
782 (defvaralias 'shell-dirtrack-mode 'shell-dirtrackp)
783 (define-minor-mode shell-dirtrack-mode
784 "Turn directory tracking on and off in a shell buffer.
785 The `dirtrack' package provides an alternative implementation of this
786 feature - see the function `dirtrack-mode'."
787 nil nil nil
788 (setq list-buffers-directory (if shell-dirtrack-mode default-directory))
789 (if shell-dirtrack-mode
790 (add-hook 'comint-input-filter-functions 'shell-directory-tracker nil t)
791 (remove-hook 'comint-input-filter-functions 'shell-directory-tracker t)))
793 (define-obsolete-function-alias 'shell-dirtrack-toggle 'shell-dirtrack-mode
794 "23.1")
796 (defun shell-cd (dir)
797 "Do normal `cd' to DIR, and set `list-buffers-directory'."
798 (cd dir)
799 (if shell-dirtrackp
800 (setq list-buffers-directory default-directory)))
802 (defun shell-resync-dirs ()
803 "Resync the buffer's idea of the current directory stack.
804 This command queries the shell with the command bound to
805 `shell-dirstack-query' (default \"dirs\"), reads the next
806 line output and parses it to form the new directory stack.
807 DON'T issue this command unless the buffer is at a shell prompt.
808 Also, note that if some other subprocess decides to do output
809 immediately after the query, its output will be taken as the
810 new directory stack -- you lose. If this happens, just do the
811 command again."
812 (interactive)
813 (let* ((proc (get-buffer-process (current-buffer)))
814 (pmark (process-mark proc))
815 (started-at-pmark (= (point) (marker-position pmark))))
816 (save-excursion
817 (goto-char pmark)
818 ;; If the process echoes commands, don't insert a fake command in
819 ;; the buffer or it will appear twice.
820 (unless comint-process-echoes
821 (insert shell-dirstack-query) (insert "\n"))
822 (sit-for 0) ; force redisplay
823 (comint-send-string proc shell-dirstack-query)
824 (comint-send-string proc "\n")
825 (set-marker pmark (point))
826 (let ((pt (point))
827 (regexp
828 (concat
829 (if comint-process-echoes
830 ;; Skip command echo if the process echoes
831 (concat "\\(" (regexp-quote shell-dirstack-query) "\n\\)")
832 "\\(\\)")
833 "\\(.+\n\\)")))
834 ;; This extra newline prevents the user's pending input from spoofing us.
835 (insert "\n") (backward-char 1)
836 ;; Wait for one line.
837 (while (not (looking-at regexp))
838 (accept-process-output proc)
839 (goto-char pt)))
840 (goto-char pmark) (delete-char 1) ; remove the extra newline
841 ;; That's the dirlist. grab it & parse it.
842 (let* ((dl (buffer-substring (match-beginning 2) (1- (match-end 2))))
843 (dl-len (length dl))
844 (ds '()) ; new dir stack
845 (i 0))
846 (while (< i dl-len)
847 ;; regexp = optional whitespace, (non-whitespace), optional whitespace
848 (string-match "\\s *\\(\\S +\\)\\s *" dl i) ; pick off next dir
849 (setq ds (cons (concat comint-file-name-prefix
850 (substring dl (match-beginning 1)
851 (match-end 1)))
852 ds))
853 (setq i (match-end 0)))
854 (let ((ds (nreverse ds)))
855 (condition-case nil
856 (progn (shell-cd (car ds))
857 (setq shell-dirstack (cdr ds)
858 shell-last-dir (car shell-dirstack))
859 (shell-dirstack-message))
860 (error (message "Couldn't cd"))))))
861 (if started-at-pmark (goto-char (marker-position pmark)))))
863 ;; For your typing convenience:
864 (defalias 'dirs 'shell-resync-dirs)
867 ;; Show the current dirstack on the message line.
868 ;; Pretty up dirs a bit by changing "/usr/jqr/foo" to "~/foo".
869 ;; (This isn't necessary if the dirlisting is generated with a simple "dirs".)
870 ;; All the commands that mung the buffer's dirstack finish by calling
871 ;; this guy.
872 (defun shell-dirstack-message ()
873 (when shell-dirtrack-verbose
874 (let* ((msg "")
875 (ds (cons default-directory shell-dirstack))
876 (home (expand-file-name (concat comint-file-name-prefix "~/")))
877 (homelen (length home)))
878 (while ds
879 (let ((dir (car ds)))
880 (and (>= (length dir) homelen)
881 (string= home (substring dir 0 homelen))
882 (setq dir (concat "~/" (substring dir homelen))))
883 ;; Strip off comint-file-name-prefix if present.
884 (and comint-file-name-prefix
885 (>= (length dir) (length comint-file-name-prefix))
886 (string= comint-file-name-prefix
887 (substring dir 0 (length comint-file-name-prefix)))
888 (setq dir (substring dir (length comint-file-name-prefix)))
889 (setcar ds dir))
890 (setq msg (concat msg (directory-file-name dir) " "))
891 (setq ds (cdr ds))))
892 (message "%s" msg))))
894 ;; This was mostly copied from shell-resync-dirs.
895 (defun shell-snarf-envar (var)
896 "Return as a string the shell's value of environment variable VAR."
897 (let* ((cmd (format "printenv '%s'\n" var))
898 (proc (get-buffer-process (current-buffer)))
899 (pmark (process-mark proc)))
900 (goto-char pmark)
901 (insert cmd)
902 (sit-for 0) ; force redisplay
903 (comint-send-string proc cmd)
904 (set-marker pmark (point))
905 (let ((pt (point))) ; wait for 1 line
906 ;; This extra newline prevents the user's pending input from spoofing us.
907 (insert "\n") (backward-char 1)
908 (while (not (looking-at ".+\n"))
909 (accept-process-output proc)
910 (goto-char pt)))
911 (goto-char pmark) (delete-char 1) ; remove the extra newline
912 (buffer-substring (match-beginning 0) (1- (match-end 0)))))
914 (defun shell-copy-environment-variable (variable)
915 "Copy the environment variable VARIABLE from the subshell to Emacs.
916 This command reads the value of the specified environment variable
917 in the shell, and sets the same environment variable in Emacs
918 \(what `getenv' in Emacs would return) to that value.
919 That value will affect any new subprocesses that you subsequently start
920 from Emacs."
921 (interactive (list (read-envvar-name "\
922 Copy Shell environment variable to Emacs: ")))
923 (setenv variable (shell-snarf-envar variable)))
925 (defun shell-forward-command (&optional arg)
926 "Move forward across ARG shell command(s). Does not cross lines.
927 See `shell-command-regexp'."
928 (interactive "p")
929 (let ((limit (line-end-position)))
930 (if (re-search-forward (concat shell-command-regexp "\\([;&|][\t ]*\\)+")
931 limit 'move arg)
932 (skip-syntax-backward " "))))
935 (defun shell-backward-command (&optional arg)
936 "Move backward across ARG shell command(s). Does not cross lines.
937 See `shell-command-regexp'."
938 (interactive "p")
939 (let ((limit (save-excursion (comint-bol nil) (point))))
940 (when (> limit (point))
941 (setq limit (line-beginning-position)))
942 (skip-syntax-backward " " limit)
943 (if (re-search-backward
944 (format "[;&|]+[\t ]*\\(%s\\)" shell-command-regexp) limit 'move arg)
945 (progn (goto-char (match-beginning 1))
946 (skip-chars-forward ";&|")))))
948 (defun shell-dynamic-complete-command ()
949 "Dynamically complete the command at point.
950 This function is similar to `comint-dynamic-complete-filename', except that it
951 searches `exec-path' (minus the trailing Emacs library path) for completion
952 candidates. Note that this may not be the same as the shell's idea of the
953 path.
955 Completion is dependent on the value of `shell-completion-execonly', plus
956 those that effect file completion. See `shell-dynamic-complete-as-command'.
958 Returns t if successful."
959 (interactive)
960 (let ((filename (comint-match-partial-filename)))
961 (if (and filename
962 (save-match-data (not (string-match "[~/]" filename)))
963 (eq (match-beginning 0)
964 (save-excursion (shell-backward-command 1) (point))))
965 (prog2 (unless (window-minibuffer-p (selected-window))
966 (message "Completing command name..."))
967 (shell-dynamic-complete-as-command)))))
970 (defun shell-dynamic-complete-as-command ()
971 "Dynamically complete at point as a command.
972 See `shell-dynamic-complete-filename'. Returns t if successful."
973 (let* ((filename (or (comint-match-partial-filename) ""))
974 (filenondir (file-name-nondirectory filename))
975 (path-dirs (cdr (reverse exec-path)))
976 (cwd (file-name-as-directory (expand-file-name default-directory)))
977 (ignored-extensions
978 (and comint-completion-fignore
979 (mapconcat (function (lambda (x) (concat (regexp-quote x) "$")))
980 comint-completion-fignore "\\|")))
981 (dir "") (comps-in-dir ())
982 (file "") (abs-file-name "") (completions ()))
983 ;; Go thru each dir in the search path, finding completions.
984 (while path-dirs
985 (setq dir (file-name-as-directory (comint-directory (or (car path-dirs) ".")))
986 comps-in-dir (and (file-accessible-directory-p dir)
987 (file-name-all-completions filenondir dir)))
988 ;; Go thru each completion found, to see whether it should be used.
989 (while comps-in-dir
990 (setq file (car comps-in-dir)
991 abs-file-name (concat dir file))
992 (if (and (not (member file completions))
993 (not (and ignored-extensions
994 (string-match ignored-extensions file)))
995 (or (string-equal dir cwd)
996 (not (file-directory-p abs-file-name)))
997 (or (null shell-completion-execonly)
998 (file-executable-p abs-file-name)))
999 (setq completions (cons file completions)))
1000 (setq comps-in-dir (cdr comps-in-dir)))
1001 (setq path-dirs (cdr path-dirs)))
1002 ;; OK, we've got a list of completions.
1003 (let ((success (let ((comint-completion-addsuffix nil))
1004 (comint-dynamic-simple-complete filenondir completions))))
1005 (if (and (memq success '(sole shortest)) comint-completion-addsuffix
1006 (not (file-directory-p (comint-match-partial-filename))))
1007 (insert " "))
1008 success)))
1010 (defun shell-dynamic-complete-filename ()
1011 "Dynamically complete the filename at point.
1012 This completes only if point is at a suitable position for a
1013 filename argument."
1014 (interactive)
1015 (let ((opoint (point))
1016 (beg (comint-line-beginning-position)))
1017 (when (save-excursion
1018 (goto-char (if (re-search-backward "[;|&]" beg t)
1019 (match-end 0)
1020 beg))
1021 (re-search-forward "[^ \t][ \t]" opoint t))
1022 (comint-dynamic-complete-as-filename))))
1024 (defun shell-match-partial-variable ()
1025 "Return the shell variable at point, or nil if none is found."
1026 (save-excursion
1027 (let ((limit (point)))
1028 (if (re-search-backward "[^A-Za-z0-9_{}]" nil 'move)
1029 (or (looking-at "\\$") (forward-char 1)))
1030 ;; Anchor the search forwards.
1031 (if (or (eolp) (looking-at "[^A-Za-z0-9_{}$]"))
1033 (re-search-forward "\\$?{?[A-Za-z0-9_]*}?" limit)
1034 (buffer-substring (match-beginning 0) (match-end 0))))))
1036 (defun shell-dynamic-complete-environment-variable ()
1037 "Dynamically complete the environment variable at point.
1038 Completes if after a variable, i.e., if it starts with a \"$\".
1039 See `shell-dynamic-complete-as-environment-variable'.
1041 This function is similar to `comint-dynamic-complete-filename', except that it
1042 searches `process-environment' for completion candidates. Note that this may
1043 not be the same as the interpreter's idea of variable names. The main problem
1044 with this type of completion is that `process-environment' is the environment
1045 which Emacs started with. Emacs does not track changes to the environment made
1046 by the interpreter. Perhaps it would be more accurate if this function was
1047 called `shell-dynamic-complete-process-environment-variable'.
1049 Returns non-nil if successful."
1050 (interactive)
1051 (let ((variable (shell-match-partial-variable)))
1052 (if (and variable (string-match "^\\$" variable))
1053 (prog2 (unless (window-minibuffer-p (selected-window))
1054 (message "Completing variable name..."))
1055 (shell-dynamic-complete-as-environment-variable)))))
1058 (defun shell-dynamic-complete-as-environment-variable ()
1059 "Dynamically complete at point as an environment variable.
1060 Used by `shell-dynamic-complete-environment-variable'.
1061 Uses `comint-dynamic-simple-complete'."
1062 (let* ((var (or (shell-match-partial-variable) ""))
1063 (variable (substring var (or (string-match "[^$({]\\|$" var) 0)))
1064 (variables (mapcar (function (lambda (x)
1065 (substring x 0 (string-match "=" x))))
1066 process-environment))
1067 (addsuffix comint-completion-addsuffix)
1068 (comint-completion-addsuffix nil)
1069 (success (comint-dynamic-simple-complete variable variables)))
1070 (if (memq success '(sole shortest))
1071 (let* ((var (shell-match-partial-variable))
1072 (variable (substring var (string-match "[^$({]" var)))
1073 (protection (cond ((string-match "{" var) "}")
1074 ((string-match "(" var) ")")
1075 (t "")))
1076 (suffix (cond ((null addsuffix) "")
1077 ((file-directory-p
1078 (comint-directory (getenv variable))) "/")
1079 (t " "))))
1080 (insert protection suffix)))
1081 success))
1084 (defun shell-replace-by-expanded-directory ()
1085 "Expand directory stack reference before point.
1086 Directory stack references are of the form \"=digit\" or \"=-\".
1087 See `default-directory' and `shell-dirstack'.
1089 Returns t if successful."
1090 (interactive)
1091 (if (comint-match-partial-filename)
1092 (save-excursion
1093 (goto-char (match-beginning 0))
1094 (let ((stack (cons default-directory shell-dirstack))
1095 (index (cond ((looking-at "=-/?")
1096 (length shell-dirstack))
1097 ((looking-at "=\\([0-9]+\\)/?")
1098 (string-to-number
1099 (buffer-substring
1100 (match-beginning 1) (match-end 1)))))))
1101 (cond ((null index)
1102 nil)
1103 ((>= index (length stack))
1104 (error "Directory stack not that deep"))
1106 (replace-match (file-name-as-directory (nth index stack)) t t)
1107 (message "Directory item: %d" index)
1108 t))))))
1110 (provide 'shell)
1112 ;;; shell.el ends here