1 ;;; shell.el --- specialized comint.el for running the shell.
3 ;; Copyright (C) 1988, 1993, 1994 Free Software Foundation, Inc.
5 ;; Author: Olin Shivers <shivers@cs.cmu.edu>
6 ;; Maintainer: Simon Marshall <s.marshall@dcs.hull.ac.uk>
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to
23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
27 ;;; Please send me bug reports, bug fixes, and extensions, so that I can
28 ;;; merge them into the master source.
29 ;;; - Olin Shivers (shivers@cs.cmu.edu)
30 ;;; - Simon Marshall (s.marshall@dcs.hull.ac.uk)
32 ;;; This file defines a a shell-in-a-buffer package (shell mode) built
33 ;;; on top of comint mode. This is actually cmushell with things
34 ;;; renamed to replace its counterpart in Emacs 18. cmushell is more
35 ;;; featureful, robust, and uniform than the Emacs 18 version.
37 ;;; Since this mode is built on top of the general command-interpreter-in-
38 ;;; a-buffer mode (comint mode), it shares a common base functionality,
39 ;;; and a common set of bindings, with all modes derived from comint mode.
40 ;;; This makes these modes easier to use.
42 ;;; For documentation on the functionality provided by comint mode, and
43 ;;; the hooks available for customising it, see the file comint.el.
44 ;;; For further information on shell mode, see the comments below.
47 ;;; When sending text from a source file to a subprocess, the process-mark can
48 ;;; move off the window, so you can lose sight of the process interactions.
49 ;;; Maybe I should ensure the process mark is in the window when I send
50 ;;; text to the process? Switch selectable?
53 ;;=============================================================================
54 ;; Some suggestions for your .emacs file.
56 ;; ;; Define C-c t to run my favorite command in shell mode:
57 ;; (setq shell-mode-hook
59 ;; (define-key shell-mode-map "\C-ct" 'favorite-cmd))))
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-R comint-previous-matching-input-from-input -"- matching input
70 ;;; m-s comint-next-matching-input Next input that matches
71 ;;; m-S comint-next-matching-input-from-input -"- matching input
72 ;;; m-c-l comint-show-output Show last batch of process output
73 ;;; return comint-send-input
74 ;;; c-d comint-delchar-or-maybe-eof Delete char unless at end of buff.
75 ;;; c-c c-a comint-bol Beginning of line; skip prompt
76 ;;; c-c c-u comint-kill-input ^u
77 ;;; c-c c-w backward-kill-word ^w
78 ;;; c-c c-c comint-interrupt-subjob ^c
79 ;;; c-c c-z comint-stop-subjob ^z
80 ;;; c-c c-\ comint-quit-subjob ^\
81 ;;; c-c c-o comint-kill-output Delete last batch of process output
82 ;;; c-c c-r comint-show-output Show last batch of process output
83 ;;; c-c c-h comint-dynamic-list-input-ring List input history
84 ;;; send-invisible Read line w/o echo & send to proc
85 ;;; comint-continue-subjob Useful if you accidentally suspend
87 ;;; comint-mode-hook is the comint mode hook.
89 ;;; Shell Mode Commands:
90 ;;; shell Fires up the shell process
91 ;;; tab comint-dynamic-complete Complete filename/command/history
92 ;;; m-? comint-dynamic-list-filename-completions 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
95 ;;; dirs Resync the buffer's dir stack
96 ;;; dirtrack-toggle Turn dir tracking on/off
97 ;;; shell-strip-ctrl-m Remove trailing ^Ms from output
99 ;;; The shell mode hook is shell-mode-hook
100 ;;; comint-prompt-regexp is initialised to shell-prompt-pattern, for backwards
103 ;;; Read the rest of this file for more information.
105 ;;; SHELL.EL COMPATIBILITY
106 ;;; Notes from when this was called cmushell, and was not the standard emacs
108 ;;;============================================================================
109 ;;; In brief: this package should have no trouble coexisting with shell.el.
111 ;;; Most customising variables -- e.g., explicit-shell-file-name -- are the
112 ;;; same, so the users shouldn't have much trouble. Hooks have different
113 ;;; names, however, so you can customise shell mode differently from cmushell
114 ;;; mode. You basically just have to remember to type M-x cmushell instead of
117 ;;; It would be nice if this file was completely plug-compatible with the old
118 ;;; shell package -- if you could just name this file shell.el, and have it
119 ;;; transparently replace the old one. But you can't. Several other packages
120 ;;; (tex-mode, background, dbx, gdb, kermit, monkey, prolog, telnet) are also
121 ;;; clients of shell mode. These packages assume detailed knowledge of shell
122 ;;; mode internals in ways that are incompatible with cmushell mode (mostly
123 ;;; because of cmushell mode's greater functionality). So, unless we are
124 ;;; willing to port all of these packages, we can't have this file be a
125 ;;; complete replacement for shell.el -- that is, we can't name this file
126 ;;; shell.el, and its main entry point (shell), because dbx.el will break
127 ;;; when it loads it in and tries to use it.
129 ;;; There are two ways to fix this. One: rewrite these other modes to use the
130 ;;; new package. This is a win, but can't be assumed. The other, backwards
131 ;;; compatible route, is to make this package non-conflict with shell.el, so
132 ;;; both files can be loaded in at the same time. And *that* is why some
133 ;;; functions and variables have different names: (cmushell),
134 ;;; cmushell-mode-map, that sort of thing. All the names have been carefully
135 ;;; chosen so that shell.el and cmushell.el won't tromp on each other.
137 ;;; Customization and Buffer Variables
138 ;;; ===========================================================================
146 (defvar shell-prompt-pattern
"^[^#$%>\n]*[#$%>] *"
147 "Regexp to match prompts in the inferior shell.
148 Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well.
149 This variable is used to initialise `comint-prompt-regexp' in the
152 The pattern should probably not match more than one line. If it does,
153 shell-mode may become confused trying to distinguish prompt from input
154 on lines which don't start with a prompt.
156 This is a fine thing to set in your `.emacs' file.")
158 (defvar shell-completion-fignore nil
159 "*List of suffixes to be disregarded during file/command completion.
160 This variable is used to initialize `comint-completion-fignore' in the shell
161 buffer. The default is nil, for compatibility with most shells.
162 Some people like (\"~\" \"#\" \"%\").
164 This is a fine thing to set in your `.emacs' file.")
166 (defvar shell-delimiter-argument-list
'(?\| ?
& ?
< ?
> ?\
( ?\
) ?\
;)
167 "List of characters to recognise as separate arguments.
168 This variable is used to initialize `comint-delimiter-argument-list' in the
169 shell buffer. The default is (?\\| ?& ?< ?> ?\\( ?\\) ?\\;).
171 This is a fine thing to set in your `.emacs' file.")
173 (defvar shell-dynamic-complete-functions
174 '(comint-replace-by-expanded-history
175 shell-dynamic-complete-environment-variable
176 shell-dynamic-complete-command
177 shell-replace-by-expanded-directory
178 comint-dynamic-complete-filename
)
179 "List of functions called to perform completion.
180 This variable is used to initialise `comint-dynamic-complete-functions' in the
183 This is a fine thing to set in your `.emacs' file.")
185 (defvar shell-command-regexp
"[^;&|\n]+"
186 "*Regexp to match a single command within a pipeline.
187 This is used for directory tracking and does not do a perfect job.")
189 (defvar shell-completion-execonly t
190 "*If non-nil, use executable files only for completion candidates.
191 This mirrors the optional behavior of tcsh.
193 Detecting executability of files may slow command completion considerably.")
195 (defvar shell-popd-regexp
"popd"
196 "*Regexp to match subshell commands equivalent to popd.")
198 (defvar shell-pushd-regexp
"pushd"
199 "*Regexp to match subshell commands equivalent to pushd.")
201 (defvar shell-pushd-tohome nil
202 "*If non-nil, make pushd with no arg behave as \"pushd ~\" (like cd).
203 This mirrors the optional behavior of tcsh.")
205 (defvar shell-pushd-dextract nil
206 "*If non-nil, make \"pushd +n\" pop the nth dir to the stack top.
207 This mirrors the optional behavior of tcsh.")
209 (defvar shell-pushd-dunique nil
210 "*If non-nil, make pushd only add unique directories to the stack.
211 This mirrors the optional behavior of tcsh.")
213 (defvar shell-cd-regexp
"cd"
214 "*Regexp to match subshell commands equivalent to cd.")
216 (defvar explicit-shell-file-name nil
217 "*If non-nil, is file name to use for explicitly requested inferior shell.")
219 (defvar explicit-csh-args
220 (if (eq system-type
'hpux
)
221 ;; -T persuades HP's csh not to think it is smarter
222 ;; than us about what terminal modes to use.
225 "*Args passed to inferior shell by M-x shell, if the shell is csh.
226 Value is a list of strings, which may be nil.")
228 (defvar shell-input-autoexpand
'history
229 "*If non-nil, expand input command history references on completion.
230 This mirrors the optional behavior of tcsh (its autoexpand and histlit).
232 If the value is `input', then the expansion is seen on input.
233 If the value is `history', then the expansion is only when inserting
234 into the buffer's input ring. See also `comint-magic-space' and
235 `comint-dynamic-complete'.
237 This variable supplies a default for `comint-input-autoexpand',
238 for Shell mode only.")
240 (defvar shell-dirstack nil
241 "List of directories saved by pushd in this buffer's shell.
242 Thus, this does not include the shell's current directory.")
244 (defvar shell-dirtrackp t
245 "Non-nil in a shell buffer means directory tracking is enabled.")
247 (defvar shell-last-dir nil
248 "Keep track of last directory for ksh `cd -' command.")
250 (defvar shell-dirstack-query nil
251 "Command used by `shell-resync-dir' to query the shell.")
253 (defvar shell-mode-map nil
)
254 (cond ((not shell-mode-map
)
255 (setq shell-mode-map
(nconc (make-sparse-keymap) comint-mode-map
))
256 (define-key shell-mode-map
"\C-c\C-f" 'shell-forward-command
)
257 (define-key shell-mode-map
"\C-c\C-b" 'shell-backward-command
)
258 (define-key shell-mode-map
"\t" 'comint-dynamic-complete
)
259 (define-key shell-mode-map
"\M-?"
260 'comint-dynamic-list-filename-completions
)
261 (define-key shell-mode-map
[menu-bar completion
]
262 (copy-keymap (lookup-key comint-mode-map
[menu-bar completion
])))
263 (define-key-after (lookup-key shell-mode-map
[menu-bar completion
])
264 [complete-env-variable
] '("Complete Env. Variable Name" .
265 shell-dynamic-complete-environment-variable
)
267 (define-key-after (lookup-key shell-mode-map
[menu-bar completion
])
268 [expand-directory
] '("Expand Directory Reference" .
269 shell-replace-by-expanded-directory
)
272 (defvar shell-mode-hook
'()
273 "*Hook for customising Shell mode.")
275 (defvar shell-font-lock-keywords
276 (list (cons shell-prompt-pattern
'font-lock-keyword-face
)
277 '("[ \t]\\([+-][^ \t\n]+\\)" 1 font-lock-comment-face
)
278 '("^[^ \t\n]+:.*$" . font-lock-string-face
)
279 '("^\\[[1-9][0-9]*\\]" . font-lock-string-face
))
280 "Additional expressions to highlight in Shell mode.")
283 ;;; ===========================================================================
287 "Major mode for interacting with an inferior shell.
288 Return after the end of the process' output sends the text from the
289 end of process to the end of the current line.
290 Return before end of process output copies the current line (except
291 for the prompt) to the end of the buffer and sends it.
292 M-x send-invisible reads a line of text without echoing it, and sends it to
293 the shell. This is useful for entering passwords. Or, add the function
294 `comint-watch-for-password-prompt' to `comint-output-filter-functions'.
296 If you accidentally suspend your process, use \\[comint-continue-subjob]
299 cd, pushd and popd commands given to the shell are watched by Emacs to keep
300 this buffer's default directory the same as the shell's working directory.
301 M-x dirs queries the shell and resyncs Emacs' idea of what the current
303 M-x dirtrack-toggle turns directory tracking on and off.
306 Customization: Entry to this mode runs the hooks on `comint-mode-hook' and
307 `shell-mode-hook' (in that order). Before each input, the hooks on
308 `comint-input-filter-functions' are run. After each shell output, the hooks
309 on `comint-output-filter-functions' are run.
311 Variables `shell-cd-regexp', `shell-pushd-regexp' and `shell-popd-regexp'
312 are used to match their respective commands, while `shell-pushd-tohome',
313 `shell-pushd-dextract' and `shell-pushd-dunique' control the behavior of the
316 Variables `comint-completion-autolist', `comint-completion-addsuffix',
317 `comint-completion-recexact' and `comint-completion-fignore' control the
318 behavior of file name, command name and variable name completion. Variable
319 `shell-completion-execonly' controls the behavior of command name completion.
320 Variable `shell-completion-fignore' is used to initialise the value of
321 `comint-completion-fignore'.
323 Variables `comint-input-ring-file-name' and `comint-input-autoexpand' control
324 the initialisation of the input ring history, and history expansion.
326 Variables `comint-output-filter-functions', a hook, and
327 `comint-scroll-to-bottom-on-input' and `comint-scroll-to-bottom-on-output'
328 control whether input and output cause the window to scroll to the end of the
332 (setq major-mode
'shell-mode
)
333 (setq mode-name
"Shell")
334 (use-local-map shell-mode-map
)
335 (setq comint-prompt-regexp shell-prompt-pattern
)
336 (setq comint-completion-fignore shell-completion-fignore
)
337 (setq comint-delimiter-argument-list shell-delimiter-argument-list
)
338 (setq comint-dynamic-complete-functions shell-dynamic-complete-functions
)
339 (make-local-variable 'paragraph-start
)
340 (setq paragraph-start comint-prompt-regexp
)
341 (make-local-variable 'font-lock-defaults
)
342 (setq font-lock-defaults
'(shell-font-lock-keywords t
))
343 (make-local-variable 'shell-dirstack
)
344 (setq shell-dirstack nil
)
345 (setq shell-last-dir nil
)
346 (make-local-variable 'shell-dirtrackp
)
347 (setq shell-dirtrackp t
)
348 (add-hook 'comint-input-filter-functions
'shell-directory-tracker
)
349 (setq comint-input-autoexpand shell-input-autoexpand
)
350 ;; shell-dependent assignments.
351 (let ((shell (file-name-nondirectory (car
352 (process-command (get-buffer-process (current-buffer)))))))
353 (setq comint-input-ring-file-name
354 (or (getenv "HISTFILE")
355 (cond ((string-equal shell
"bash") "~/.bash_history")
356 ((string-equal shell
"ksh") "~/.sh_history")
358 (if (equal (file-truename comint-input-ring-file-name
) "/dev/null")
359 (setq comint-input-ring-file-name nil
))
360 (setq shell-dirstack-query
361 (if (string-match "^k?sh$" shell
) "pwd" "dirs")))
362 (run-hooks 'shell-mode-hook
)
363 (comint-read-input-ring t
))
367 "Run an inferior shell, with I/O through buffer *shell*.
368 If buffer exists but shell process is not running, make new shell.
369 If buffer exists and shell process is running, just switch to buffer `*shell*'.
370 Program used comes from variable `explicit-shell-file-name',
371 or (if that is nil) from the ESHELL environment variable,
372 or else from SHELL if there is no ESHELL.
373 If a file `~/.emacs_SHELLNAME' exists, it is given as initial input
374 (Note that this may lose due to a timing error if the shell
375 discards input when it starts up.)
376 The buffer is put in Shell mode, giving commands for sending input
377 and controlling the subjobs of the shell. See `shell-mode'.
378 See also the variable `shell-prompt-pattern'.
380 The shell file name (sans directories) is used to make a symbol name
381 such as `explicit-csh-args'. If that symbol is a variable,
382 its value is used as a list of arguments when invoking the shell.
383 Otherwise, one argument `-i' is passed to the shell.
385 \(Type \\[describe-mode] in the shell buffer for a list of commands.)"
387 (if (not (comint-check-proc "*shell*"))
388 (let* ((prog (or explicit-shell-file-name
392 (name (file-name-nondirectory prog
))
393 (startfile (concat "~/.emacs_" name
))
394 (xargs-name (intern-soft (concat "explicit-" name
"-args"))))
395 (set-buffer (apply 'make-comint
"shell" prog
396 (if (file-exists-p startfile
) startfile
)
397 (if (and xargs-name
(boundp xargs-name
))
398 (symbol-value xargs-name
)
401 (switch-to-buffer "*shell*"))
403 ;;; Directory tracking
404 ;;; ===========================================================================
405 ;;; This code provides the shell mode input sentinel
406 ;;; SHELL-DIRECTORY-TRACKER
407 ;;; that tracks cd, pushd, and popd commands issued to the shell, and
408 ;;; changes the current directory of the shell buffer accordingly.
410 ;;; This is basically a fragile hack, although it's more accurate than
411 ;;; the version in Emacs 18's shell.el. It has the following failings:
412 ;;; 1. It doesn't know about the cdpath shell variable.
413 ;;; 2. It cannot infallibly deal with command sequences, though it does well
414 ;;; with these and with ignoring commands forked in another shell with ()s.
415 ;;; 3. More generally, any complex command is going to throw it. Otherwise,
416 ;;; you'd have to build an entire shell interpreter in emacs lisp. Failing
417 ;;; that, there's no way to catch shell commands where cd's are buried
418 ;;; inside conditional expressions, aliases, and so forth.
420 ;;; The whole approach is a crock. Shell aliases mess it up. File sourcing
421 ;;; messes it up. You run other processes under the shell; these each have
422 ;;; separate working directories, and some have commands for manipulating
423 ;;; their w.d.'s (e.g., the lcd command in ftp). Some of these programs have
424 ;;; commands that do *not* affect the current w.d. at all, but look like they
425 ;;; do (e.g., the cd command in ftp). In shells that allow you job
426 ;;; control, you can switch between jobs, all having different w.d.'s. So
427 ;;; simply saying %3 can shift your w.d..
429 ;;; The solution is to relax, not stress out about it, and settle for
430 ;;; a hack that works pretty well in typical circumstances. Remember
431 ;;; that a half-assed solution is more in keeping with the spirit of Unix,
434 ;;; One good hack not implemented here for users of programmable shells
435 ;;; is to program up the shell w.d. manipulation commands to output
436 ;;; a coded command sequence to the tty. Something like
438 ;;; where <cwd> is the new current working directory. Then trash the
439 ;;; directory tracking machinery currently used in this package, and
440 ;;; replace it with a process filter that watches for and strips out
443 (defun shell-directory-tracker (str)
444 "Tracks cd, pushd and popd commands issued to the shell.
445 This function is called on each input passed to the shell.
446 It watches for cd, pushd and popd commands and sets the buffer's
447 default directory to track these commands.
449 You may toggle this tracking on and off with M-x dirtrack-toggle.
450 If emacs gets confused, you can resync with the shell with M-x dirs.
452 See variables `shell-cd-regexp', `shell-pushd-regexp', and `shell-popd-regexp',
453 while `shell-pushd-tohome', `shell-pushd-dextract' and `shell-pushd-dunique'
454 control the behavior of the relevant command.
456 Environment variables are expanded, see function `substitute-in-file-name'."
458 ;; We fail gracefully if we think the command will fail in the shell.
459 (condition-case chdir-failure
460 (let ((start (progn (string-match "^[;\\s ]*" str
) ; skip whitespace
463 (while (string-match shell-command-regexp str start
)
464 (setq end
(match-end 0)
465 cmd
(comint-arguments (substring str start end
) 0 0)
466 arg1
(comint-arguments (substring str start end
) 1 1))
467 (cond ((eq (string-match shell-popd-regexp cmd
) 0)
468 (shell-process-popd (substitute-in-file-name arg1
)))
469 ((eq (string-match shell-pushd-regexp cmd
) 0)
470 (shell-process-pushd (substitute-in-file-name arg1
)))
471 ((eq (string-match shell-cd-regexp cmd
) 0)
472 (shell-process-cd (substitute-in-file-name arg1
))))
473 (setq start
(progn (string-match "[;\\s ]*" str end
) ; skip again
475 (error "Couldn't cd"))))
478 (defun shell-process-popd (arg)
479 (let ((num (or (shell-extract-num arg
) 0)))
480 (cond ((and num
(= num
0) shell-dirstack
)
481 (cd (car shell-dirstack
))
482 (setq shell-dirstack
(cdr shell-dirstack
))
483 (shell-dirstack-message))
484 ((and num
(> num
0) (<= num
(length shell-dirstack
)))
485 (let* ((ds (cons nil shell-dirstack
))
486 (cell (nthcdr (1- num
) ds
)))
487 (rplacd cell
(cdr (cdr cell
)))
488 (setq shell-dirstack
(cdr ds
))
489 (shell-dirstack-message)))
491 (error "Couldn't popd")))))
493 ;; Return DIR prefixed with comint-file-name-prefix as appropriate.
494 (defun shell-prefixed-directory-name (dir)
495 (if (= (length comint-file-name-prefix
) 0)
497 (if (file-name-absolute-p dir
)
498 ;; The name is absolute, so prepend the prefix.
499 (concat comint-file-name-prefix dir
)
500 ;; For a relative name we assume default-directory already has the prefix.
501 (expand-file-name dir
))))
504 (defun shell-process-cd (arg)
505 (let ((new-dir (cond ((zerop (length arg
)) (concat comint-file-name-prefix
507 ((string-equal "-" arg
) shell-last-dir
)
508 (t (shell-prefixed-directory-name arg
)))))
509 (setq shell-last-dir default-directory
)
511 (shell-dirstack-message)))
514 (defun shell-process-pushd (arg)
515 (let ((num (shell-extract-num arg
)))
516 (cond ((zerop (length arg
))
517 ;; no arg -- swap pwd and car of stack unless shell-pushd-tohome
518 (cond (shell-pushd-tohome
519 (shell-process-pushd (concat comint-file-name-prefix
"~")))
521 (let ((old default-directory
))
522 (cd (car shell-dirstack
))
524 (cons old
(cdr shell-dirstack
)))
525 (shell-dirstack-message)))
527 (message "Directory stack empty."))))
530 (cond ((> num
(length shell-dirstack
))
531 (message "Directory stack not that deep."))
533 (error (message "Couldn't cd.")))
534 (shell-pushd-dextract
535 (let ((dir (nth (1- num
) shell-dirstack
)))
536 (shell-process-popd arg
)
537 (shell-process-pushd default-directory
)
539 (shell-dirstack-message)))
541 (let* ((ds (cons default-directory shell-dirstack
))
543 (front (nthcdr num ds
))
544 (back (reverse (nthcdr (- dslen num
) (reverse ds
))))
545 (new-ds (append front back
)))
547 (setq shell-dirstack
(cdr new-ds
))
548 (shell-dirstack-message)))))
551 (let ((old-wd default-directory
))
552 (cd (shell-prefixed-directory-name arg
))
553 (if (or (null shell-pushd-dunique
)
554 (not (member old-wd shell-dirstack
)))
555 (setq shell-dirstack
(cons old-wd shell-dirstack
)))
556 (shell-dirstack-message))))))
558 ;; If STR is of the form +n, for n>0, return n. Otherwise, nil.
559 (defun shell-extract-num (str)
560 (and (string-match "^\\+[1-9][0-9]*$" str
)
561 (string-to-int str
)))
564 (defun shell-dirtrack-toggle ()
565 "Turn directory tracking on and off in a shell buffer."
567 (setq shell-dirtrackp
(not shell-dirtrackp
))
568 (message "Directory tracking %s" (if shell-dirtrackp
"ON" "OFF")))
570 ;;; For your typing convenience:
571 (defalias 'dirtrack-toggle
'shell-dirtrack-toggle
)
574 (defun shell-resync-dirs ()
575 "Resync the buffer's idea of the current directory stack.
576 This command queries the shell with the command bound to
577 `shell-dirstack-query' (default \"dirs\"), reads the next
578 line output and parses it to form the new directory stack.
579 DON'T issue this command unless the buffer is at a shell prompt.
580 Also, note that if some other subprocess decides to do output
581 immediately after the query, its output will be taken as the
582 new directory stack -- you lose. If this happens, just do the
585 (let* ((proc (get-buffer-process (current-buffer)))
586 (pmark (process-mark proc
)))
588 (insert shell-dirstack-query
) (insert "\n")
589 (sit-for 0) ; force redisplay
590 (comint-send-string proc shell-dirstack-query
)
591 (comint-send-string proc
"\n")
592 (set-marker pmark
(point))
593 (let ((pt (point))) ; wait for 1 line
594 ;; This extra newline prevents the user's pending input from spoofing us.
595 (insert "\n") (backward-char 1)
596 (while (not (looking-at ".+\n"))
597 (accept-process-output proc
)
599 (goto-char pmark
) (delete-char 1) ; remove the extra newline
600 ;; That's the dirlist. grab it & parse it.
601 (let* ((dl (buffer-substring (match-beginning 0) (1- (match-end 0))))
603 (ds '()) ; new dir stack
606 ;; regexp = optional whitespace, (non-whitespace), optional whitespace
607 (string-match "\\s *\\(\\S +\\)\\s *" dl i
) ; pick off next dir
608 (setq ds
(cons (concat comint-file-name-prefix
609 (substring dl
(match-beginning 1)
612 (setq i
(match-end 0)))
613 (let ((ds (nreverse ds
)))
616 (setq shell-dirstack
(cdr ds
))
617 (shell-dirstack-message))
618 (error (message "Couldn't cd.")))))))
620 ;;; For your typing convenience:
621 (defalias 'dirs
'shell-resync-dirs
)
624 ;;; Show the current dirstack on the message line.
625 ;;; Pretty up dirs a bit by changing "/usr/jqr/foo" to "~/foo".
626 ;;; (This isn't necessary if the dirlisting is generated with a simple "dirs".)
627 ;;; All the commands that mung the buffer's dirstack finish by calling
629 (defun shell-dirstack-message ()
631 (ds (cons default-directory shell-dirstack
))
632 (home (expand-file-name (concat comint-file-name-prefix
"~/")))
633 (homelen (length home
)))
635 (let ((dir (car ds
)))
636 (and (>= (length dir
) homelen
) (string= home
(substring dir
0 homelen
))
637 (setq dir
(concat "~/" (substring dir homelen
))))
638 ;; Strip off comint-file-name-prefix if present.
639 (and comint-file-name-prefix
640 (>= (length dir
) (length comint-file-name-prefix
))
641 (string= comint-file-name-prefix
642 (substring dir
0 (length comint-file-name-prefix
)))
643 (setq dir
(substring dir
(length comint-file-name-prefix
)))
645 (setq msg
(concat msg
(directory-file-name dir
) " "))
649 (defun shell-forward-command (&optional arg
)
650 "Move forward across ARG shell command(s). Does not cross lines.
651 See `shell-command-regexp'."
653 (let ((limit (save-excursion (end-of-line nil
) (point))))
654 (if (re-search-forward (concat shell-command-regexp
"\\([;&|][\t ]*\\)+")
656 (skip-syntax-backward " "))))
659 (defun shell-backward-command (&optional arg
)
660 "Move backward across ARG shell command(s). Does not cross lines.
661 See `shell-command-regexp'."
663 (let ((limit (save-excursion (comint-bol nil
) (point))))
664 (if (> limit
(point))
665 (save-excursion (beginning-of-line) (setq limit
(point))))
666 (skip-syntax-backward " " limit
)
667 (if (re-search-backward
668 (format "[;&|]+[\t ]*\\(%s\\)" shell-command-regexp
) limit
'move arg
)
669 (progn (goto-char (match-beginning 1))
670 (skip-chars-forward ";&|")))))
673 (defun shell-dynamic-complete-command ()
674 "Dynamically complete the command at point.
675 This function is similar to `comint-dynamic-complete-filename', except that it
676 searches `exec-path' (minus the trailing emacs library path) for completion
677 candidates. Note that this may not be the same as the shell's idea of the
680 Completion is dependent on the value of `shell-completion-execonly', plus
681 those that effect file completion. See `shell-dynamic-complete-as-command'.
683 Returns t if successful."
685 (let ((filename (comint-match-partial-filename)))
687 (save-match-data (not (string-match "[~/]" filename
)))
688 (eq (match-beginning 0)
689 (save-excursion (shell-backward-command 1) (point))))
690 (prog2 (message "Completing command name...")
691 (shell-dynamic-complete-as-command)))))
694 (defun shell-dynamic-complete-as-command ()
695 "Dynamically complete at point as a command.
696 See `shell-dynamic-complete-filename'. Returns t if successful."
697 (let* ((filename (or (comint-match-partial-filename) ""))
698 (pathnondir (file-name-nondirectory filename
))
699 (paths (cdr (reverse exec-path
)))
700 (cwd (file-name-as-directory (expand-file-name default-directory
)))
702 (and comint-completion-fignore
703 (mapconcat (function (lambda (x) (concat (regexp-quote x
) "$")))
704 comint-completion-fignore
"\\|")))
705 (path "") (comps-in-path ()) (file "") (filepath "") (completions ()))
706 ;; Go thru each path in the search path, finding completions.
708 (setq path
(file-name-as-directory (comint-directory (or (car paths
) ".")))
709 comps-in-path
(and (file-accessible-directory-p path
)
710 (file-name-all-completions pathnondir path
)))
711 ;; Go thru each completion found, to see whether it should be used.
713 (setq file
(car comps-in-path
)
714 filepath
(concat path file
))
715 (if (and (not (member file completions
))
716 (not (and ignored-extensions
717 (string-match ignored-extensions file
)))
718 (or (string-equal path cwd
)
719 (not (file-directory-p filepath
)))
720 (or (null shell-completion-execonly
)
721 (file-executable-p filepath
)))
722 (setq completions
(cons file completions
)))
723 (setq comps-in-path
(cdr comps-in-path
)))
724 (setq paths
(cdr paths
)))
725 ;; OK, we've got a list of completions.
726 (let ((success (let ((comint-completion-addsuffix nil
))
727 (comint-dynamic-simple-complete pathnondir completions
))))
728 (if (and (memq success
'(sole shortest
)) comint-completion-addsuffix
729 (not (file-directory-p (comint-match-partial-filename))))
734 (defun shell-match-partial-variable ()
735 "Return the variable at point, or nil if non is found."
737 (let ((limit (point)))
738 (if (re-search-backward "[^A-Za-z0-9_{}]" nil
'move
)
739 (or (looking-at "\\$") (forward-char 1)))
740 ;; Anchor the search forwards.
741 (if (or (eolp) (looking-at "[^A-Za-z0-9_{}$]"))
743 (re-search-forward "\\$?{?[A-Za-z0-9_]*}?" limit
)
744 (buffer-substring (match-beginning 0) (match-end 0))))))
747 (defun shell-dynamic-complete-environment-variable ()
748 "Dynamically complete the environment variable at point.
749 Completes if after a variable, i.e., if it starts with a \"$\".
750 See `shell-dynamic-complete-as-environment-variable'.
752 This function is similar to `comint-dynamic-complete-filename', except that it
753 searches `process-environment' for completion candidates. Note that this may
754 not be the same as the interpreter's idea of variable names. The main problem
755 with this type of completion is that `process-environment' is the environment
756 which Emacs started with. Emacs does not track changes to the environment made
757 by the interpreter. Perhaps it would be more accurate if this function was
758 called `shell-dynamic-complete-process-environment-variable'.
760 Returns non-nil if successful."
762 (let ((variable (shell-match-partial-variable)))
763 (if (and variable
(string-match "^\\$" variable
))
764 (prog2 (message "Completing variable name...")
765 (shell-dynamic-complete-as-environment-variable)))))
768 (defun shell-dynamic-complete-as-environment-variable ()
769 "Dynamically complete at point as an environment variable.
770 Used by `shell-dynamic-complete-environment-variable'.
771 Uses `comint-dynamic-simple-complete'."
772 (let* ((var (or (shell-match-partial-variable) ""))
773 (variable (substring var
(or (string-match "[^$({]\\|$" var
) 0)))
774 (variables (mapcar (function (lambda (x)
775 (substring x
0 (string-match "=" x
))))
776 process-environment
))
777 (addsuffix comint-completion-addsuffix
)
778 (comint-completion-addsuffix nil
)
779 (success (comint-dynamic-simple-complete variable variables
)))
780 (if (memq success
'(sole shortest
))
781 (let* ((var (shell-match-partial-variable))
782 (variable (substring var
(string-match "[^$({]" var
)))
783 (protection (cond ((string-match "{" var
) "}")
784 ((string-match "(" var
) ")")
786 (suffix (cond ((null addsuffix
) "")
788 (comint-directory (getenv variable
))) "/")
790 (insert protection suffix
)))
794 (defun shell-replace-by-expanded-directory ()
795 "Expand directory stack reference before point.
796 Directory stack references are of the form \"=digit\" or \"=-\".
797 See `default-directory' and `shell-dirstack'.
799 Returns t if successful."
801 (if (comint-match-partial-filename)
803 (goto-char (match-beginning 0))
804 (let ((stack (cons default-directory shell-dirstack
))
805 (index (cond ((looking-at "=-/?")
806 (length shell-dirstack
))
807 ((looking-at "=\\([0-9]+\\)")
810 (match-beginning 1) (match-end 1)))))))
813 ((>= index
(length stack
))
814 (error "Directory stack not that deep."))
816 (replace-match (file-name-as-directory (nth index stack
)) t t
)
817 (message "Directory item: %d" index
)
822 ;;; shell.el ends here