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