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