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