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