(shell-mode): Use define-derived-mode.
[emacs.git] / lisp / shell.el
blobd3ec4ee8a9fce015da6fa45dd8fa0d325c544a17
1 ;;; shell.el --- specialized comint.el for running the shell.
3 ;; Copyright (C) 1988, 93, 94, 95, 96, 1997, 2000 Free Software Foundation, Inc.
5 ;; Author: Olin Shivers <shivers@cs.cmu.edu> then
6 ;; Simon Marshall <simon@gnu.org>
7 ;; Maintainer: FSF
8 ;; Keywords: processes
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
27 ;;; Commentary:
29 ;; Please send me bug reports, bug fixes, and extensions, so that I can
30 ;; merge them into the master source.
31 ;; - Olin Shivers (shivers@cs.cmu.edu)
32 ;; - Simon Marshall (simon@gnu.org)
34 ;; This file defines a a shell-in-a-buffer package (shell mode) built
35 ;; on top of comint mode. This is actually cmushell with things
36 ;; renamed to replace its counterpart in Emacs 18. cmushell is more
37 ;; featureful, robust, and uniform than the Emacs 18 version.
39 ;; Since this mode is built on top of the general command-interpreter-in-
40 ;; a-buffer mode (comint mode), it shares a common base functionality,
41 ;; and a common set of bindings, with all modes derived from comint mode.
42 ;; This makes these modes easier to use.
44 ;; For documentation on the functionality provided by comint mode, and
45 ;; the hooks available for customising it, see the file comint.el.
46 ;; For further information on shell mode, see the comments below.
48 ;; Needs fixin:
49 ;; When sending text from a source file to a subprocess, the process-mark can
50 ;; move off the window, so you can lose sight of the process interactions.
51 ;; Maybe I should ensure the process mark is in the window when I send
52 ;; text to the process? Switch selectable?
54 ;; YOUR .EMACS FILE
55 ;;=============================================================================
56 ;; Some suggestions for your .emacs file.
58 ;; ;; Define M-# to run some strange command:
59 ;; (eval-after-load "shell"
60 ;; '(define-key shell-mode-map "\M-#" 'shells-dynamic-spell))
62 ;; Brief Command Documentation:
63 ;;============================================================================
64 ;; Comint Mode Commands: (common to shell and all comint-derived modes)
66 ;; m-p comint-previous-input Cycle backwards in input history
67 ;; m-n comint-next-input Cycle forwards
68 ;; m-r comint-previous-matching-input Previous input matching a regexp
69 ;; m-s comint-next-matching-input Next input that matches
70 ;; m-c-l comint-show-output Show last batch of process output
71 ;; return comint-send-input
72 ;; c-d comint-delchar-or-maybe-eof Delete char unless at end of buff.
73 ;; c-c c-a comint-bol Beginning of line; skip prompt
74 ;; c-c c-u comint-kill-input ^u
75 ;; c-c c-w backward-kill-word ^w
76 ;; c-c c-c comint-interrupt-subjob ^c
77 ;; c-c c-z comint-stop-subjob ^z
78 ;; c-c c-\ comint-quit-subjob ^\
79 ;; c-c c-o comint-kill-output Delete last batch of process output
80 ;; c-c c-r comint-show-output Show last batch of process output
81 ;; c-c c-l comint-dynamic-list-input-ring List input history
82 ;; send-invisible Read line w/o echo & send to proc
83 ;; comint-continue-subjob Useful if you accidentally suspend
84 ;; top-level job
85 ;; comint-mode-hook is the comint mode hook.
87 ;; Shell Mode Commands:
88 ;; shell Fires up the shell process
89 ;; tab comint-dynamic-complete Complete filename/command/history
90 ;; m-? comint-dynamic-list-filename-completions
91 ;; List completions in help buffer
92 ;; m-c-f shell-forward-command Forward a shell command
93 ;; m-c-b shell-backward-command Backward a shell command
94 ;; dirs Resync the buffer's dir stack
95 ;; dirtrack-mode Turn dir tracking on/off
96 ;; comint-strip-ctrl-m Remove trailing ^Ms from output
98 ;; The shell mode hook is shell-mode-hook
99 ;; comint-prompt-regexp is initialised to shell-prompt-pattern, for backwards
100 ;; compatibility.
102 ;; Read the rest of this file for more information.
104 ;;; Code:
106 (require 'comint)
108 ;;; Customization and Buffer Variables
110 (defgroup shell nil
111 "Running shell from within Emacs buffers"
112 :group 'processes
113 :group 'unix)
115 (defgroup shell-directories nil
116 "Directory support in shell mode"
117 :group 'shell)
119 (defgroup shell-faces nil
120 "Faces in shell buffers"
121 :group 'shell)
123 ;;;###autoload
124 (defcustom shell-dumb-shell-regexp "cmd\\(proxy\\)?\\.exe"
125 "Regexp to match shells that don't save their command history.
126 For shells that match this regexp, Emacs will write out the
127 command history when the shell finishes."
128 :type 'regexp
129 :group 'shell)
131 (defcustom shell-prompt-pattern "^[^#$%>\n]*[#$%>] *"
132 "Regexp to match prompts in the inferior shell.
133 Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well.
134 This variable is used to initialise `comint-prompt-regexp' in the
135 shell buffer.
137 This variable is only used if the variable
138 `comint-use-prompt-regexp-instead-of-fields' is non-nil.
140 The pattern should probably not match more than one line. If it does,
141 Shell mode may become confused trying to distinguish prompt from input
142 on lines which don't start with a prompt.
144 This is a fine thing to set in your `.emacs' file."
145 :type 'regexp
146 :group 'shell)
148 (defcustom shell-completion-fignore nil
149 "*List of suffixes to be disregarded during file/command completion.
150 This variable is used to initialize `comint-completion-fignore' in the shell
151 buffer. The default is nil, for compatibility with most shells.
152 Some people like (\"~\" \"#\" \"%\").
154 This is a fine thing to set in your `.emacs' file."
155 :type '(repeat (string :tag "Suffix"))
156 :group 'shell)
158 (defvar shell-delimiter-argument-list '(?\| ?& ?< ?> ?\( ?\) ?\;)
159 "List of characters to recognise as separate arguments.
160 This variable is used to initialize `comint-delimiter-argument-list' in the
161 shell buffer. The value may depend on the operating system or shell.
163 This is a fine thing to set in your `.emacs' file.")
165 (defvar shell-file-name-chars
166 (if (memq system-type '(ms-dos windows-nt))
167 "~/A-Za-z0-9_^$!#%&{}@`'.,:()-"
168 "~/A-Za-z0-9+@:_.$#%,={}-")
169 "String of characters valid in a file name.
170 This variable is used to initialize `comint-file-name-chars' in the
171 shell buffer. The value may depend on the operating system or shell.
173 This is a fine thing to set in your `.emacs' file.")
175 (defvar shell-file-name-quote-list
176 (if (memq system-type '(ms-dos windows-nt))
178 (append shell-delimiter-argument-list '(?\ ?\* ?\! ?\" ?\' ?\` ?\#)))
179 "List of characters to quote when in a file name.
180 This variable is used to initialize `comint-file-name-quote-list' in the
181 shell buffer. The value may depend on the operating system or shell.
183 This is a fine thing to set in your `.emacs' file.")
185 (defvar shell-dynamic-complete-functions
186 '(comint-replace-by-expanded-history
187 shell-dynamic-complete-environment-variable
188 shell-dynamic-complete-command
189 shell-replace-by-expanded-directory
190 comint-dynamic-complete-filename)
191 "List of functions called to perform completion.
192 This variable is used to initialise `comint-dynamic-complete-functions' in the
193 shell buffer.
195 This is a fine thing to set in your `.emacs' file.")
197 (defcustom shell-command-regexp "[^;&|\n]+"
198 "*Regexp to match a single command within a pipeline.
199 This is used for directory tracking and does not do a perfect job."
200 :type 'regexp
201 :group 'shell)
203 (defcustom shell-completion-execonly t
204 "*If non-nil, use executable files only for completion candidates.
205 This mirrors the optional behavior of tcsh.
207 Detecting executability of files may slow command completion considerably."
208 :type 'boolean
209 :group 'shell)
211 (defcustom shell-popd-regexp "popd"
212 "*Regexp to match subshell commands equivalent to popd."
213 :type 'regexp
214 :group 'shell-directories)
216 (defcustom shell-pushd-regexp "pushd"
217 "*Regexp to match subshell commands equivalent to pushd."
218 :type 'regexp
219 :group 'shell-directories)
221 (defcustom shell-pushd-tohome nil
222 "*If non-nil, make pushd with no arg behave as \"pushd ~\" (like cd).
223 This mirrors the optional behavior of tcsh."
224 :type 'boolean
225 :group 'shell-directories)
227 (defcustom shell-pushd-dextract nil
228 "*If non-nil, make \"pushd +n\" pop the nth dir to the stack top.
229 This mirrors the optional behavior of tcsh."
230 :type 'boolean
231 :group 'shell-directories)
233 (defcustom shell-pushd-dunique nil
234 "*If non-nil, make pushd only add unique directories to the stack.
235 This mirrors the optional behavior of tcsh."
236 :type 'boolean
237 :group 'shell-directories)
239 (defcustom shell-cd-regexp "cd"
240 "*Regexp to match subshell commands equivalent to cd."
241 :type 'regexp
242 :group 'shell-directories)
244 (defcustom shell-chdrive-regexp
245 (if (memq system-type '(ms-dos windows-nt))
246 ; NetWare allows the five chars between upper and lower alphabetics.
247 "[]a-zA-Z^_`\\[\\\\]:"
248 nil)
249 "*If non-nil, is regexp used to track drive changes."
250 :type '(choice regexp
251 (const nil))
252 :group 'shell-directories)
254 (defcustom shell-dirtrack-verbose t
255 "*If non-nil, show the directory stack following directory change.
256 This is effective only if directory tracking is enabled."
257 :type 'boolean
258 :group 'shell-directories)
260 (defcustom explicit-shell-file-name nil
261 "*If non-nil, is file name to use for explicitly requested inferior shell."
262 :type '(choice (const :tag "None" nil) file)
263 :group 'shell)
265 (defcustom explicit-csh-args
266 (if (eq system-type 'hpux)
267 ;; -T persuades HP's csh not to think it is smarter
268 ;; than us about what terminal modes to use.
269 '("-i" "-T")
270 '("-i"))
271 "*Args passed to inferior shell by M-x shell, if the shell is csh.
272 Value is a list of strings, which may be nil."
273 :type '(repeat (string :tag "Argument"))
274 :group 'shell)
276 (defcustom shell-input-autoexpand 'history
277 "*If non-nil, expand input command history references on completion.
278 This mirrors the optional behavior of tcsh (its autoexpand and histlit).
280 If the value is `input', then the expansion is seen on input.
281 If the value is `history', then the expansion is only when inserting
282 into the buffer's input ring. See also `comint-magic-space' and
283 `comint-dynamic-complete'.
285 This variable supplies a default for `comint-input-autoexpand',
286 for Shell mode only."
287 :type '(choice (const :tag "off" nil)
288 (const input)
289 (const history)
290 (const :tag "on" t))
291 :group 'shell)
293 (defvar shell-dirstack nil
294 "List of directories saved by pushd in this buffer's shell.
295 Thus, this does not include the shell's current directory.")
297 (defvar shell-dirtrackp t
298 "Non-nil in a shell buffer means directory tracking is enabled.")
300 (defvar shell-last-dir nil
301 "Keep track of last directory for ksh `cd -' command.")
303 (defvar shell-dirstack-query nil
304 "Command used by `shell-resync-dir' to query the shell.")
306 (defvar shell-mode-map nil)
307 (cond ((not shell-mode-map)
308 (setq shell-mode-map (nconc (make-sparse-keymap) comint-mode-map))
309 (define-key shell-mode-map "\C-c\C-f" 'shell-forward-command)
310 (define-key shell-mode-map "\C-c\C-b" 'shell-backward-command)
311 (define-key shell-mode-map "\t" 'comint-dynamic-complete)
312 (define-key shell-mode-map "\M-?"
313 'comint-dynamic-list-filename-completions)
314 (define-key shell-mode-map [menu-bar completion]
315 (copy-keymap (lookup-key comint-mode-map [menu-bar completion])))
316 (define-key-after (lookup-key shell-mode-map [menu-bar completion])
317 [complete-env-variable] '("Complete Env. Variable Name" .
318 shell-dynamic-complete-environment-variable)
319 'complete-file)
320 (define-key-after (lookup-key shell-mode-map [menu-bar completion])
321 [expand-directory] '("Expand Directory Reference" .
322 shell-replace-by-expanded-directory)
323 'complete-expand)))
325 (defcustom shell-mode-hook '()
326 "*Hook for customising Shell mode."
327 :type 'hook
328 :group 'shell)
330 (defvar shell-font-lock-keywords
331 '(("[ \t]\\([+-][^ \t\n]+\\)" 1 font-lock-comment-face)
332 ("^[^ \t\n]+:.*" . font-lock-string-face)
333 ("^\\[[1-9][0-9]*\\]" . font-lock-string-face))
334 "Additional expressions to highlight in Shell mode.")
336 ;;; Basic Procedures
338 (put 'shell-mode 'mode-class 'special)
340 (define-derived-mode shell-mode comint-mode "Shell"
341 "Major mode for interacting with an inferior shell.
342 \\[comint-send-input] after the end of the process' output sends the text from
343 the end of process to the end of the current line.
344 \\[comint-send-input] before end of process output copies the current line minus the prompt to
345 the end of the buffer and sends it (\\[comint-copy-old-input] just copies the current line).
346 \\[send-invisible] reads a line of text without echoing it, and sends it to
347 the shell. This is useful for entering passwords. Or, add the function
348 `comint-watch-for-password-prompt' to `comint-output-filter-functions'.
350 If you want to make multiple shell buffers, rename the `*shell*' buffer
351 using \\[rename-buffer] or \\[rename-uniquely] and start a new shell.
353 If you want to make shell buffers limited in length, add the function
354 `comint-truncate-buffer' to `comint-output-filter-functions'.
356 If you accidentally suspend your process, use \\[comint-continue-subjob]
357 to continue it.
359 `cd', `pushd' and `popd' commands given to the shell are watched by Emacs to
360 keep this buffer's default directory the same as the shell's working directory.
361 While directory tracking is enabled, the shell's working directory is displayed
362 by \\[list-buffers] or \\[mouse-buffer-menu] in the `File' field.
363 \\[dirs] queries the shell and resyncs Emacs' idea of what the current
364 directory stack is.
365 \\[dirtrack-mode] turns directory tracking on and off.
367 \\{shell-mode-map}
368 Customization: Entry to this mode runs the hooks on `comint-mode-hook' and
369 `shell-mode-hook' (in that order). Before each input, the hooks on
370 `comint-input-filter-functions' are run. After each shell output, the hooks
371 on `comint-output-filter-functions' are run.
373 Variables `shell-cd-regexp', `shell-chdrive-regexp', `shell-pushd-regexp'
374 and `shell-popd-regexp' are used to match their respective commands,
375 while `shell-pushd-tohome', `shell-pushd-dextract' and `shell-pushd-dunique'
376 control the behavior of the relevant command.
378 Variables `comint-completion-autolist', `comint-completion-addsuffix',
379 `comint-completion-recexact' and `comint-completion-fignore' control the
380 behavior of file name, command name and variable name completion. Variable
381 `shell-completion-execonly' controls the behavior of command name completion.
382 Variable `shell-completion-fignore' is used to initialise the value of
383 `comint-completion-fignore'.
385 Variables `comint-input-ring-file-name' and `comint-input-autoexpand' control
386 the initialisation of the input ring history, and history expansion.
388 Variables `comint-output-filter-functions', a hook, and
389 `comint-scroll-to-bottom-on-input' and `comint-scroll-to-bottom-on-output'
390 control whether input and output cause the window to scroll to the end of the
391 buffer."
392 (setq comint-prompt-regexp shell-prompt-pattern)
393 (setq comint-completion-fignore shell-completion-fignore)
394 (setq comint-delimiter-argument-list shell-delimiter-argument-list)
395 (setq comint-file-name-chars shell-file-name-chars)
396 (setq comint-file-name-quote-list shell-file-name-quote-list)
397 (setq comint-dynamic-complete-functions shell-dynamic-complete-functions)
398 (make-local-variable 'paragraph-start)
399 (setq paragraph-start comint-prompt-regexp)
400 (make-local-variable 'font-lock-defaults)
401 (setq font-lock-defaults '(shell-font-lock-keywords t))
402 (make-local-variable 'shell-dirstack)
403 (setq shell-dirstack nil)
404 (make-local-variable 'shell-last-dir)
405 (setq shell-last-dir nil)
406 (make-local-variable 'shell-dirtrackp)
407 (setq shell-dirtrackp t)
408 (add-hook 'comint-input-filter-functions 'shell-directory-tracker nil t)
409 (setq comint-input-autoexpand shell-input-autoexpand)
410 ;; This is not really correct, since the shell buffer does not really
411 ;; edit this directory. But it is useful in the buffer list and menus.
412 (make-local-variable 'list-buffers-directory)
413 (setq list-buffers-directory (expand-file-name default-directory))
414 ;; shell-dependent assignments.
415 (let ((shell (file-name-nondirectory (car
416 (process-command (get-buffer-process (current-buffer)))))))
417 (setq comint-input-ring-file-name
418 (or (getenv "HISTFILE")
419 (cond ((string-equal shell "bash") "~/.bash_history")
420 ((string-equal shell "ksh") "~/.sh_history")
421 (t "~/.history"))))
422 (if (or (equal comint-input-ring-file-name "")
423 (equal (file-truename comint-input-ring-file-name)
424 (file-truename "/dev/null")))
425 (setq comint-input-ring-file-name nil))
426 ;; Arrange to write out the input ring on exit, if the shell doesn't
427 ;; do this itself.
428 (if (and comint-input-ring-file-name
429 (string-match shell-dumb-shell-regexp shell))
430 (set-process-sentinel (get-buffer-process (current-buffer))
431 #'shell-write-history-on-exit))
432 (setq shell-dirstack-query
433 (cond ((string-equal shell "sh") "pwd")
434 ((string-equal shell "ksh") "echo $PWD ~-")
435 (t "dirs"))))
436 (comint-read-input-ring t))
438 (defun shell-write-history-on-exit (process event)
439 "Called when the shell process is stopped.
441 Writes the input history to a history file
442 `comint-comint-input-ring-file-name' using `comint-write-input-ring'
443 and inserts a short message in the shell buffer.
445 This function is a sentinel watching the shell interpreter process.
446 Sentinels will always get the two parameters PROCESS and EVENT."
447 ;; Write history.
448 (comint-write-input-ring)
449 (if (buffer-live-p (process-buffer process))
450 (insert (format "\nProcess %s %s\n" process event))))
452 ;;;###autoload
453 (defun shell (&optional buffer)
454 "Run an inferior shell, with I/O through BUFFER (which defaults to `*shell*').
455 Interactively, a prefix arg means to prompt for BUFFER.
456 If BUFFER exists but shell process is not running, make new shell.
457 If BUFFER exists and shell process is running, just switch to BUFFER.
458 Program used comes from variable `explicit-shell-file-name',
459 or (if that is nil) from the ESHELL environment variable,
460 or else from SHELL if there is no ESHELL.
461 If a file `~/.emacs_SHELLNAME' exists, it is given as initial input
462 (Note that this may lose due to a timing error if the shell
463 discards input when it starts up.)
464 The buffer is put in Shell mode, giving commands for sending input
465 and controlling the subjobs of the shell. See `shell-mode'.
466 See also the variable `shell-prompt-pattern'.
468 To specify a coding system for converting non-ASCII characters
469 in the input and output to the shell, use \\[universal-coding-system-argument]
470 before \\[shell]. You can also specify this with \\[set-buffer-process-coding-system]
471 in the shell buffer, after you start the shell.
472 The default comes from `process-coding-system-alist' and
473 `default-process-coding-system'.
475 The shell file name (sans directories) is used to make a symbol name
476 such as `explicit-csh-args'. If that symbol is a variable,
477 its value is used as a list of arguments when invoking the shell.
478 Otherwise, one argument `-i' is passed to the shell.
480 \(Type \\[describe-mode] in the shell buffer for a list of commands.)"
481 (interactive
482 (list
483 (and current-prefix-arg
484 (read-buffer "Shell buffer: " "*shell*"))))
485 (when (null buffer)
486 (setq buffer "*shell*"))
487 (if (not (comint-check-proc buffer))
488 (let* ((prog (or explicit-shell-file-name
489 (getenv "ESHELL")
490 (getenv "SHELL")
491 "/bin/sh"))
492 (name (file-name-nondirectory prog))
493 (startfile (concat "~/.emacs_" name))
494 (xargs-name (intern-soft (concat "explicit-" name "-args")))
495 shell-buffer)
496 (save-excursion
497 (set-buffer (apply 'make-comint-in-buffer "shell" buffer prog
498 (if (file-exists-p startfile) startfile)
499 (if (and xargs-name (boundp xargs-name))
500 (symbol-value xargs-name)
501 '("-i"))))
502 (setq shell-buffer (current-buffer))
503 (shell-mode))
504 (pop-to-buffer shell-buffer))
505 (pop-to-buffer buffer)))
507 ;;; Don't do this when shell.el is loaded, only while dumping.
508 ;;;###autoload (add-hook 'same-window-buffer-names "*shell*")
510 ;;; Directory tracking
512 ;;; This code provides the shell mode input sentinel
513 ;;; SHELL-DIRECTORY-TRACKER
514 ;;; that tracks cd, pushd, and popd commands issued to the shell, and
515 ;;; changes the current directory of the shell buffer accordingly.
517 ;;; This is basically a fragile hack, although it's more accurate than
518 ;;; the version in Emacs 18's shell.el. It has the following failings:
519 ;;; 1. It doesn't know about the cdpath shell variable.
520 ;;; 2. It cannot infallibly deal with command sequences, though it does well
521 ;;; with these and with ignoring commands forked in another shell with ()s.
522 ;;; 3. More generally, any complex command is going to throw it. Otherwise,
523 ;;; you'd have to build an entire shell interpreter in emacs lisp. Failing
524 ;;; that, there's no way to catch shell commands where cd's are buried
525 ;;; inside conditional expressions, aliases, and so forth.
527 ;;; The whole approach is a crock. Shell aliases mess it up. File sourcing
528 ;;; messes it up. You run other processes under the shell; these each have
529 ;;; separate working directories, and some have commands for manipulating
530 ;;; their w.d.'s (e.g., the lcd command in ftp). Some of these programs have
531 ;;; commands that do *not* affect the current w.d. at all, but look like they
532 ;;; do (e.g., the cd command in ftp). In shells that allow you job
533 ;;; control, you can switch between jobs, all having different w.d.'s. So
534 ;;; simply saying %3 can shift your w.d..
536 ;;; The solution is to relax, not stress out about it, and settle for
537 ;;; a hack that works pretty well in typical circumstances. Remember
538 ;;; that a half-assed solution is more in keeping with the spirit of Unix,
539 ;;; anyway. Blech.
541 ;;; One good hack not implemented here for users of programmable shells
542 ;;; is to program up the shell w.d. manipulation commands to output
543 ;;; a coded command sequence to the tty. Something like
544 ;;; ESC | <cwd> |
545 ;;; where <cwd> is the new current working directory. Then trash the
546 ;;; directory tracking machinery currently used in this package, and
547 ;;; replace it with a process filter that watches for and strips out
548 ;;; these messages.
550 (defun shell-directory-tracker (str)
551 "Tracks cd, pushd and popd commands issued to the shell.
552 This function is called on each input passed to the shell.
553 It watches for cd, pushd and popd commands and sets the buffer's
554 default directory to track these commands.
556 You may toggle this tracking on and off with M-x dirtrack-mode.
557 If emacs gets confused, you can resync with the shell with M-x dirs.
559 See variables `shell-cd-regexp', `shell-chdrive-regexp', `shell-pushd-regexp',
560 and `shell-popd-regexp', while `shell-pushd-tohome', `shell-pushd-dextract',
561 and `shell-pushd-dunique' control the behavior of the relevant command.
563 Environment variables are expanded, see function `substitute-in-file-name'."
564 (if shell-dirtrackp
565 ;; We fail gracefully if we think the command will fail in the shell.
566 (condition-case chdir-failure
567 (let ((start (progn (string-match "^[; \t]*" str) ; skip whitespace
568 (match-end 0)))
569 end cmd arg1)
570 (while (string-match shell-command-regexp str start)
571 (setq end (match-end 0)
572 cmd (comint-arguments (substring str start end) 0 0)
573 arg1 (comint-arguments (substring str start end) 1 1))
574 (if arg1
575 (setq arg1 (shell-unquote-argument arg1)))
576 (cond ((string-match (concat "\\`\\(" shell-popd-regexp
577 "\\)\\($\\|[ \t]\\)")
578 cmd)
579 (shell-process-popd (comint-substitute-in-file-name arg1)))
580 ((string-match (concat "\\`\\(" shell-pushd-regexp
581 "\\)\\($\\|[ \t]\\)")
582 cmd)
583 (shell-process-pushd (comint-substitute-in-file-name arg1)))
584 ((string-match (concat "\\`\\(" shell-cd-regexp
585 "\\)\\($\\|[ \t]\\)")
586 cmd)
587 (shell-process-cd (comint-substitute-in-file-name arg1)))
588 ((and shell-chdrive-regexp
589 (string-match (concat "\\`\\(" shell-chdrive-regexp
590 "\\)\\($\\|[ \t]\\)")
591 cmd))
592 (shell-process-cd (comint-substitute-in-file-name cmd))))
593 (setq start (progn (string-match "[; \t]*" str end) ; skip again
594 (match-end 0)))))
595 (error "Couldn't cd"))))
597 (defun shell-unquote-argument (string)
598 "Remove all kinds of shell quoting from STRING."
599 (save-match-data
600 (let ((idx 0) next inside)
601 (while (and (< idx (length string))
602 (setq next (string-match "[\\'`\"]" string next)))
603 (cond ((= (aref string next) ?\\)
604 (setq string (replace-match "" nil nil string))
605 (setq next (1+ next)))
606 ((and inside (= (aref string next) inside))
607 (setq string (replace-match "" nil nil string))
608 (setq inside nil))
609 (inside
610 (setq next (1+ next)))
612 (setq inside (aref string next))
613 (setq string (replace-match "" nil nil string)))))
614 string)))
616 ;;; popd [+n]
617 (defun shell-process-popd (arg)
618 (let ((num (or (shell-extract-num arg) 0)))
619 (cond ((and num (= num 0) shell-dirstack)
620 (shell-cd (car shell-dirstack))
621 (setq shell-dirstack (cdr shell-dirstack))
622 (shell-dirstack-message))
623 ((and num (> num 0) (<= num (length shell-dirstack)))
624 (let* ((ds (cons nil shell-dirstack))
625 (cell (nthcdr (1- num) ds)))
626 (rplacd cell (cdr (cdr cell)))
627 (setq shell-dirstack (cdr ds))
628 (shell-dirstack-message)))
630 (error "Couldn't popd")))))
632 ;; Return DIR prefixed with comint-file-name-prefix as appropriate.
633 (defun shell-prefixed-directory-name (dir)
634 (if (= (length comint-file-name-prefix) 0)
636 (if (file-name-absolute-p dir)
637 ;; The name is absolute, so prepend the prefix.
638 (concat comint-file-name-prefix dir)
639 ;; For relative name we assume default-directory already has the prefix.
640 (expand-file-name dir))))
642 ;;; cd [dir]
643 (defun shell-process-cd (arg)
644 (let ((new-dir (cond ((zerop (length arg)) (concat comint-file-name-prefix
645 "~"))
646 ((string-equal "-" arg) shell-last-dir)
647 (t (shell-prefixed-directory-name arg)))))
648 (setq shell-last-dir default-directory)
649 (shell-cd new-dir)
650 (shell-dirstack-message)))
652 ;;; pushd [+n | dir]
653 (defun shell-process-pushd (arg)
654 (let ((num (shell-extract-num arg)))
655 (cond ((zerop (length arg))
656 ;; no arg -- swap pwd and car of stack unless shell-pushd-tohome
657 (cond (shell-pushd-tohome
658 (shell-process-pushd (concat comint-file-name-prefix "~")))
659 (shell-dirstack
660 (let ((old default-directory))
661 (shell-cd (car shell-dirstack))
662 (setq shell-dirstack (cons old (cdr shell-dirstack)))
663 (shell-dirstack-message)))
665 (message "Directory stack empty."))))
666 ((numberp num)
667 ;; pushd +n
668 (cond ((> num (length shell-dirstack))
669 (message "Directory stack not that deep."))
670 ((= num 0)
671 (error (message "Couldn't cd.")))
672 (shell-pushd-dextract
673 (let ((dir (nth (1- num) shell-dirstack)))
674 (shell-process-popd arg)
675 (shell-process-pushd default-directory)
676 (shell-cd dir)
677 (shell-dirstack-message)))
679 (let* ((ds (cons default-directory shell-dirstack))
680 (dslen (length ds))
681 (front (nthcdr num ds))
682 (back (reverse (nthcdr (- dslen num) (reverse ds))))
683 (new-ds (append front back)))
684 (shell-cd (car new-ds))
685 (setq shell-dirstack (cdr new-ds))
686 (shell-dirstack-message)))))
688 ;; pushd <dir>
689 (let ((old-wd default-directory))
690 (shell-cd (shell-prefixed-directory-name arg))
691 (if (or (null shell-pushd-dunique)
692 (not (member old-wd shell-dirstack)))
693 (setq shell-dirstack (cons old-wd shell-dirstack)))
694 (shell-dirstack-message))))))
696 ;; If STR is of the form +n, for n>0, return n. Otherwise, nil.
697 (defun shell-extract-num (str)
698 (and (string-match "^\\+[1-9][0-9]*$" str)
699 (string-to-int str)))
702 (defun shell-dirtrack-mode ()
703 "Turn directory tracking on and off in a shell buffer."
704 (interactive)
705 (if (setq shell-dirtrackp (not shell-dirtrackp))
706 (setq list-buffers-directory default-directory)
707 (setq list-buffers-directory nil))
708 (message "Directory tracking %s" (if shell-dirtrackp "ON" "OFF")))
710 ;;; For your typing convenience:
711 (defalias 'shell-dirtrack-toggle 'shell-dirtrack-mode)
712 (defalias 'dirtrack-toggle 'shell-dirtrack-mode)
713 (defalias 'dirtrack-mode 'shell-dirtrack-mode)
715 (defun shell-cd (dir)
716 "Do normal `cd' to DIR, and set `list-buffers-directory'."
717 (if shell-dirtrackp
718 (setq list-buffers-directory (file-name-as-directory
719 (expand-file-name dir))))
720 (cd dir))
722 (defun shell-resync-dirs ()
723 "Resync the buffer's idea of the current directory stack.
724 This command queries the shell with the command bound to
725 `shell-dirstack-query' (default \"dirs\"), reads the next
726 line output and parses it to form the new directory stack.
727 DON'T issue this command unless the buffer is at a shell prompt.
728 Also, note that if some other subprocess decides to do output
729 immediately after the query, its output will be taken as the
730 new directory stack -- you lose. If this happens, just do the
731 command again."
732 (interactive)
733 (let* ((proc (get-buffer-process (current-buffer)))
734 (pmark (process-mark proc)))
735 (goto-char pmark)
736 (insert shell-dirstack-query) (insert "\n")
737 (sit-for 0) ; force redisplay
738 (comint-send-string proc shell-dirstack-query)
739 (comint-send-string proc "\n")
740 (set-marker pmark (point))
741 (let ((pt (point))) ; wait for 1 line
742 ;; This extra newline prevents the user's pending input from spoofing us.
743 (insert "\n") (backward-char 1)
744 (while (not (looking-at ".+\n"))
745 (accept-process-output proc)
746 (goto-char pt)))
747 (goto-char pmark) (delete-char 1) ; remove the extra newline
748 ;; That's the dirlist. grab it & parse it.
749 (let* ((dl (buffer-substring (match-beginning 0) (1- (match-end 0))))
750 (dl-len (length dl))
751 (ds '()) ; new dir stack
752 (i 0))
753 (while (< i dl-len)
754 ;; regexp = optional whitespace, (non-whitespace), optional whitespace
755 (string-match "\\s *\\(\\S +\\)\\s *" dl i) ; pick off next dir
756 (setq ds (cons (concat comint-file-name-prefix
757 (substring dl (match-beginning 1)
758 (match-end 1)))
759 ds))
760 (setq i (match-end 0)))
761 (let ((ds (nreverse ds)))
762 (condition-case nil
763 (progn (shell-cd (car ds))
764 (setq shell-dirstack (cdr ds)
765 shell-last-dir (car shell-dirstack))
766 (shell-dirstack-message))
767 (error (message "Couldn't cd.")))))))
769 ;;; For your typing convenience:
770 (defalias 'dirs 'shell-resync-dirs)
773 ;;; Show the current dirstack on the message line.
774 ;;; Pretty up dirs a bit by changing "/usr/jqr/foo" to "~/foo".
775 ;;; (This isn't necessary if the dirlisting is generated with a simple "dirs".)
776 ;;; All the commands that mung the buffer's dirstack finish by calling
777 ;;; this guy.
778 (defun shell-dirstack-message ()
779 (when shell-dirtrack-verbose
780 (let* ((msg "")
781 (ds (cons default-directory shell-dirstack))
782 (home (expand-file-name (concat comint-file-name-prefix "~/")))
783 (homelen (length home)))
784 (while ds
785 (let ((dir (car ds)))
786 (and (>= (length dir) homelen)
787 (string= home (substring dir 0 homelen))
788 (setq dir (concat "~/" (substring dir homelen))))
789 ;; Strip off comint-file-name-prefix if present.
790 (and comint-file-name-prefix
791 (>= (length dir) (length comint-file-name-prefix))
792 (string= comint-file-name-prefix
793 (substring dir 0 (length comint-file-name-prefix)))
794 (setq dir (substring dir (length comint-file-name-prefix)))
795 (setcar ds dir))
796 (setq msg (concat msg (directory-file-name dir) " "))
797 (setq ds (cdr ds))))
798 (message "%s" msg))))
800 ;; This was mostly copied from shell-resync-dirs.
801 (defun shell-snarf-envar (var)
802 "Return as a string the shell's value of environment variable VAR."
803 (let* ((cmd (format "printenv '%s'\n" var))
804 (proc (get-buffer-process (current-buffer)))
805 (pmark (process-mark proc)))
806 (goto-char pmark)
807 (insert cmd)
808 (sit-for 0) ; force redisplay
809 (comint-send-string proc cmd)
810 (set-marker pmark (point))
811 (let ((pt (point))) ; wait for 1 line
812 ;; This extra newline prevents the user's pending input from spoofing us.
813 (insert "\n") (backward-char 1)
814 (while (not (looking-at ".+\n"))
815 (accept-process-output proc)
816 (goto-char pt)))
817 (goto-char pmark) (delete-char 1) ; remove the extra newline
818 (buffer-substring (match-beginning 0) (1- (match-end 0)))))
820 (defun shell-copy-environment-variable (variable)
821 "Copy the environment variable VARIABLE from the subshell to Emacs.
822 This command reads the value of the specified environment variable
823 in the shell, and sets the same environment variable in Emacs
824 \(what `getenv' in Emacs would return) to that value.
825 That value will affect any new subprocesses that you subsequently start
826 from Emacs."
827 (interactive (list (read-envvar-name "\
828 Copy Shell environment variable to Emacs: ")))
829 (setenv variable (shell-snarf-envar variable)))
831 (defun shell-forward-command (&optional arg)
832 "Move forward across ARG shell command(s). Does not cross lines.
833 See `shell-command-regexp'."
834 (interactive "p")
835 (let ((limit (save-excursion (end-of-line nil) (point))))
836 (if (re-search-forward (concat shell-command-regexp "\\([;&|][\t ]*\\)+")
837 limit 'move arg)
838 (skip-syntax-backward " "))))
841 (defun shell-backward-command (&optional arg)
842 "Move backward across ARG shell command(s). Does not cross lines.
843 See `shell-command-regexp'."
844 (interactive "p")
845 (let ((limit (save-excursion (comint-bol nil) (point))))
846 (when (> limit (point))
847 (setq limit (line-beginning-position)))
848 (skip-syntax-backward " " limit)
849 (if (re-search-backward
850 (format "[;&|]+[\t ]*\\(%s\\)" shell-command-regexp) limit 'move arg)
851 (progn (goto-char (match-beginning 1))
852 (skip-chars-forward ";&|")))))
855 (defun shell-dynamic-complete-command ()
856 "Dynamically complete the command at point.
857 This function is similar to `comint-dynamic-complete-filename', except that it
858 searches `exec-path' (minus the trailing emacs library path) for completion
859 candidates. Note that this may not be the same as the shell's idea of the
860 path.
862 Completion is dependent on the value of `shell-completion-execonly', plus
863 those that effect file completion. See `shell-dynamic-complete-as-command'.
865 Returns t if successful."
866 (interactive)
867 (let ((filename (comint-match-partial-filename)))
868 (if (and filename
869 (save-match-data (not (string-match "[~/]" filename)))
870 (eq (match-beginning 0)
871 (save-excursion (shell-backward-command 1) (point))))
872 (prog2 (message "Completing command name...")
873 (shell-dynamic-complete-as-command)))))
876 (defun shell-dynamic-complete-as-command ()
877 "Dynamically complete at point as a command.
878 See `shell-dynamic-complete-filename'. Returns t if successful."
879 (let* ((filename (or (comint-match-partial-filename) ""))
880 (pathnondir (file-name-nondirectory filename))
881 (paths (cdr (reverse exec-path)))
882 (cwd (file-name-as-directory (expand-file-name default-directory)))
883 (ignored-extensions
884 (and comint-completion-fignore
885 (mapconcat (function (lambda (x) (concat (regexp-quote x) "$")))
886 comint-completion-fignore "\\|")))
887 (path "") (comps-in-path ()) (file "") (filepath "") (completions ()))
888 ;; Go thru each path in the search path, finding completions.
889 (while paths
890 (setq path (file-name-as-directory (comint-directory (or (car paths) ".")))
891 comps-in-path (and (file-accessible-directory-p path)
892 (file-name-all-completions pathnondir path)))
893 ;; Go thru each completion found, to see whether it should be used.
894 (while comps-in-path
895 (setq file (car comps-in-path)
896 filepath (concat path file))
897 (if (and (not (member file completions))
898 (not (and ignored-extensions
899 (string-match ignored-extensions file)))
900 (or (string-equal path cwd)
901 (not (file-directory-p filepath)))
902 (or (null shell-completion-execonly)
903 (file-executable-p filepath)))
904 (setq completions (cons file completions)))
905 (setq comps-in-path (cdr comps-in-path)))
906 (setq paths (cdr paths)))
907 ;; OK, we've got a list of completions.
908 (let ((success (let ((comint-completion-addsuffix nil))
909 (comint-dynamic-simple-complete pathnondir completions))))
910 (if (and (memq success '(sole shortest)) comint-completion-addsuffix
911 (not (file-directory-p (comint-match-partial-filename))))
912 (insert " "))
913 success)))
916 (defun shell-match-partial-variable ()
917 "Return the shell variable at point, or nil if none is found."
918 (save-excursion
919 (let ((limit (point)))
920 (if (re-search-backward "[^A-Za-z0-9_{}]" nil 'move)
921 (or (looking-at "\\$") (forward-char 1)))
922 ;; Anchor the search forwards.
923 (if (or (eolp) (looking-at "[^A-Za-z0-9_{}$]"))
925 (re-search-forward "\\$?{?[A-Za-z0-9_]*}?" limit)
926 (buffer-substring (match-beginning 0) (match-end 0))))))
929 (defun shell-dynamic-complete-environment-variable ()
930 "Dynamically complete the environment variable at point.
931 Completes if after a variable, i.e., if it starts with a \"$\".
932 See `shell-dynamic-complete-as-environment-variable'.
934 This function is similar to `comint-dynamic-complete-filename', except that it
935 searches `process-environment' for completion candidates. Note that this may
936 not be the same as the interpreter's idea of variable names. The main problem
937 with this type of completion is that `process-environment' is the environment
938 which Emacs started with. Emacs does not track changes to the environment made
939 by the interpreter. Perhaps it would be more accurate if this function was
940 called `shell-dynamic-complete-process-environment-variable'.
942 Returns non-nil if successful."
943 (interactive)
944 (let ((variable (shell-match-partial-variable)))
945 (if (and variable (string-match "^\\$" variable))
946 (prog2 (message "Completing variable name...")
947 (shell-dynamic-complete-as-environment-variable)))))
950 (defun shell-dynamic-complete-as-environment-variable ()
951 "Dynamically complete at point as an environment variable.
952 Used by `shell-dynamic-complete-environment-variable'.
953 Uses `comint-dynamic-simple-complete'."
954 (let* ((var (or (shell-match-partial-variable) ""))
955 (variable (substring var (or (string-match "[^$({]\\|$" var) 0)))
956 (variables (mapcar (function (lambda (x)
957 (substring x 0 (string-match "=" x))))
958 process-environment))
959 (addsuffix comint-completion-addsuffix)
960 (comint-completion-addsuffix nil)
961 (success (comint-dynamic-simple-complete variable variables)))
962 (if (memq success '(sole shortest))
963 (let* ((var (shell-match-partial-variable))
964 (variable (substring var (string-match "[^$({]" var)))
965 (protection (cond ((string-match "{" var) "}")
966 ((string-match "(" var) ")")
967 (t "")))
968 (suffix (cond ((null addsuffix) "")
969 ((file-directory-p
970 (comint-directory (getenv variable))) "/")
971 (t " "))))
972 (insert protection suffix)))
973 success))
976 (defun shell-replace-by-expanded-directory ()
977 "Expand directory stack reference before point.
978 Directory stack references are of the form \"=digit\" or \"=-\".
979 See `default-directory' and `shell-dirstack'.
981 Returns t if successful."
982 (interactive)
983 (if (comint-match-partial-filename)
984 (save-excursion
985 (goto-char (match-beginning 0))
986 (let ((stack (cons default-directory shell-dirstack))
987 (index (cond ((looking-at "=-/?")
988 (length shell-dirstack))
989 ((looking-at "=\\([0-9]+\\)")
990 (string-to-number
991 (buffer-substring
992 (match-beginning 1) (match-end 1)))))))
993 (cond ((null index)
994 nil)
995 ((>= index (length stack))
996 (error "Directory stack not that deep."))
998 (replace-match (file-name-as-directory (nth index stack)) t t)
999 (message "Directory item: %d" index)
1000 t))))))
1002 (provide 'shell)
1004 ;;; shell.el ends here