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