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