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