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