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