vc-hooks.el workaround for bug#11490
[emacs.git] / lisp / eshell / em-prompt.el
blobf4701ec35eae30ee3b26ed12525315d0ab6ced31
1 ;;; em-prompt.el --- command prompts
3 ;; Copyright (C) 1999-2012 Free Software Foundation, Inc.
5 ;; Author: John Wiegley <johnw@gnu.org>
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software: you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation, either version 3 of the License, or
12 ;; (at your option) any later version.
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
22 ;;; Commentary:
24 ;; Most of the prompt navigation commands of `comint-mode' are
25 ;; supported, such as C-c C-n, C-c C-p, etc.
27 ;;; Code:
29 (eval-when-compile (require 'eshell))
31 ;;;###autoload
32 (progn
33 (defgroup eshell-prompt nil
34 "This module provides command prompts, and navigation between them,
35 as is common with most shells."
36 :tag "Command prompts"
37 :group 'eshell-module))
39 ;;; User Variables:
41 (defcustom eshell-prompt-load-hook nil
42 "A list of functions to call when loading `eshell-prompt'."
43 :version "24.1" ; removed eshell-prompt-initialize
44 :type 'hook
45 :group 'eshell-prompt)
47 (defcustom eshell-prompt-function
48 (function
49 (lambda ()
50 (concat (abbreviate-file-name (eshell/pwd))
51 (if (= (user-uid) 0) " # " " $ "))))
52 "A function that returns the Eshell prompt string.
53 Make sure to update `eshell-prompt-regexp' so that it will match your
54 prompt."
55 :type 'function
56 :group 'eshell-prompt)
58 (defcustom eshell-prompt-regexp "^[^#$\n]* [#$] "
59 "A regexp which fully matches your eshell prompt.
60 This setting is important, since it affects how eshell will interpret
61 the lines that are passed to it.
62 If this variable is changed, all Eshell buffers must be exited and
63 re-entered for it to take effect."
64 :type 'regexp
65 :group 'eshell-prompt)
67 (defcustom eshell-highlight-prompt t
68 "If non-nil, Eshell should highlight the prompt."
69 :type 'boolean
70 :group 'eshell-prompt)
72 (defface eshell-prompt
73 '((default :weight bold)
74 (((class color) (background light)) :foreground "Red")
75 (((class color) (background dark)) :foreground "Pink"))
76 "The face used to highlight prompt strings.
77 For highlighting other kinds of strings -- similar to shell mode's
78 behavior -- simply use an output filer which changes text properties."
79 :group 'eshell-prompt)
80 (define-obsolete-face-alias 'eshell-prompt-face 'eshell-prompt "22.1")
82 (defcustom eshell-before-prompt-hook nil
83 "A list of functions to call before outputting the prompt."
84 :type 'hook
85 :options '(eshell-begin-on-new-line)
86 :group 'eshell-prompt)
88 (defcustom eshell-after-prompt-hook nil
89 "A list of functions to call after outputting the prompt.
90 Note that if `eshell-scroll-show-maximum-output' is non-nil, then
91 setting `eshell-show-maximum-output' here won't do much. It depends
92 on whether the user wants the resizing to happen while output is
93 arriving, or after."
94 :type 'hook
95 :options '(eshell-show-maximum-output)
96 :group 'eshell-prompt)
98 ;;; Functions:
100 (defun eshell-prompt-initialize ()
101 "Initialize the prompting code."
102 (unless eshell-non-interactive-p
103 (add-hook 'eshell-post-command-hook 'eshell-emit-prompt nil t)
105 (make-local-variable 'eshell-prompt-regexp)
106 (if eshell-prompt-regexp
107 (set (make-local-variable 'paragraph-start) eshell-prompt-regexp))
109 (set (make-local-variable 'eshell-skip-prompt-function)
110 'eshell-skip-prompt)
112 (define-key eshell-command-map [(control ?n)] 'eshell-next-prompt)
113 (define-key eshell-command-map [(control ?p)] 'eshell-previous-prompt)))
115 (defun eshell-emit-prompt ()
116 "Emit a prompt if eshell is being used interactively."
117 (run-hooks 'eshell-before-prompt-hook)
118 (if (not eshell-prompt-function)
119 (set-marker eshell-last-output-end (point))
120 (let ((prompt (funcall eshell-prompt-function)))
121 (and eshell-highlight-prompt
122 (add-text-properties 0 (length prompt)
123 '(read-only t
124 face eshell-prompt
125 rear-nonsticky (face read-only))
126 prompt))
127 (eshell-interactive-print prompt)))
128 (run-hooks 'eshell-after-prompt-hook))
130 (defun eshell-backward-matching-input (regexp arg)
131 "Search backward through buffer for match for REGEXP.
132 Matches are searched for on lines that match `eshell-prompt-regexp'.
133 With prefix argument N, search for Nth previous match.
134 If N is negative, find the next or Nth next match."
135 (interactive (eshell-regexp-arg "Backward input matching (regexp): "))
136 (let* ((re (concat eshell-prompt-regexp ".*" regexp))
137 (pos (save-excursion (end-of-line (if (> arg 0) 0 1))
138 (if (re-search-backward re nil t arg)
139 (point)))))
140 (if (null pos)
141 (progn (message "Not found")
142 (ding))
143 (goto-char pos)
144 (eshell-bol))))
146 (defun eshell-forward-matching-input (regexp arg)
147 "Search forward through buffer for match for REGEXP.
148 Matches are searched for on lines that match `eshell-prompt-regexp'.
149 With prefix argument N, search for Nth following match.
150 If N is negative, find the previous or Nth previous match."
151 (interactive (eshell-regexp-arg "Forward input matching (regexp): "))
152 (eshell-backward-matching-input regexp (- arg)))
154 (defun eshell-next-prompt (n)
155 "Move to end of Nth next prompt in the buffer.
156 See `eshell-prompt-regexp'."
157 (interactive "p")
158 (forward-paragraph n)
159 (eshell-skip-prompt))
161 (defun eshell-previous-prompt (n)
162 "Move to end of Nth previous prompt in the buffer.
163 See `eshell-prompt-regexp'."
164 (interactive "p")
165 (eshell-next-prompt (- (1+ n))))
167 (defun eshell-skip-prompt ()
168 "Skip past the text matching regexp `eshell-prompt-regexp'.
169 If this takes us past the end of the current line, don't skip at all."
170 (let ((eol (line-end-position)))
171 (if (and (looking-at eshell-prompt-regexp)
172 (<= (match-end 0) eol))
173 (goto-char (match-end 0)))))
175 (provide 'em-prompt)
177 ;; Local Variables:
178 ;; generated-autoload-file: "esh-groups.el"
179 ;; End:
181 ;;; em-prompt.el ends here