Merge from emacs-24; up to 2012-05-04T19:17:01Z!monnier@iro.umontreal.ca
[bpt/emacs.git] / lisp / eshell / em-rebind.el
CommitLineData
60370d40 1;;; em-rebind.el --- rebind keys when point is at current input
affbf647 2
acaf905b 3;; Copyright (C) 1999-2012 Free Software Foundation, Inc.
affbf647 4
7de5b421
GM
5;; Author: John Wiegley <johnw@gnu.org>
6
affbf647
GM
7;; This file is part of GNU Emacs.
8
4ee57b2a 9;; GNU Emacs is free software: you can redistribute it and/or modify
affbf647 10;; it under the terms of the GNU General Public License as published by
4ee57b2a
GM
11;; the Free Software Foundation, either version 3 of the License, or
12;; (at your option) any later version.
affbf647
GM
13
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.
18
19;; You should have received a copy of the GNU General Public License
4ee57b2a 20;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
affbf647 21
dbba8a04
GM
22;;; Commentary:
23
24;;; Code:
affbf647 25
dbba8a04 26(eval-when-compile (require 'eshell))
affbf647 27
3146b070 28;;;###autoload
35ff222c
GM
29(progn
30(defgroup eshell-rebind nil
affbf647
GM
31 "This module allows for special keybindings that only take effect
32while the point is in a region of input text. By default, it binds
33C-a to move to the beginning of the input text (rather than just the
34beginning of the line), and C-p and C-n to move through the input
35history, C-u kills the current input text, etc. It also, if
36`eshell-confine-point-to-input' is non-nil, does not allow certain
37commands to cause the point to leave the input area, such as
38`backward-word', `previous-line', etc. This module intends to mimic
39the behavior of normal shells while the user editing new input text."
40 :tag "Rebind keys at input"
35ff222c 41 :group 'eshell-module))
affbf647 42
affbf647
GM
43;;; User Variables:
44
d783d303 45(defcustom eshell-rebind-load-hook nil
ec60da52 46 "A list of functions to call when loading `eshell-rebind'."
d783d303 47 :version "24.1" ; removed eshell-rebind-initialize
affbf647
GM
48 :type 'hook
49 :group 'eshell-rebind)
50
51(defcustom eshell-rebind-keys-alist
52 '(([(control ?a)] . eshell-bol)
53 ([home] . eshell-bol)
54 ([(control ?d)] . eshell-delchar-or-maybe-eof)
55 ([backspace] . eshell-delete-backward-char)
56 ([delete] . eshell-delete-backward-char)
57 ([(control ?w)] . backward-kill-word)
58 ([(control ?u)] . eshell-kill-input))
ec60da52 59 "Bind some keys differently if point is in input text."
affbf647
GM
60 :type '(repeat (cons (vector :tag "Keys to bind"
61 (repeat :inline t sexp))
62 (function :tag "Command")))
63 :group 'eshell-rebind)
64
65(defcustom eshell-confine-point-to-input t
ec60da52 66 "If non-nil, do not allow the point to leave the current input.
affbf647
GM
67This is more difficult to do nicely in Emacs than one might think.
68Basically, the `point-left' attribute is added to the input text, and
69a function is placed on that hook to take the point back to
70`eshell-last-output-end' every time the user tries to move away. But
71since there are many cases in which the point _ought_ to move away
72\(for programmatic reasons), the variable
73`eshell-cannot-leave-input-list' defines commands which are affected
74from this rule. However, this list is by no means as complete as it
75probably should be, so basically all one can hope for is that other
76people will left the point alone in the Eshell buffer. Sigh."
77 :type 'boolean
78 :group 'eshell-rebind)
79
80(defcustom eshell-error-if-move-away t
ec60da52 81 "If non-nil, consider it an error to try to move outside current input.
affbf647
GM
82This is default behavior of shells like bash."
83 :type 'boolean
84 :group 'eshell-rebind)
85
86(defcustom eshell-remap-previous-input t
ec60da52 87 "If non-nil, remap input keybindings on previous prompts as well."
affbf647
GM
88 :type 'boolean
89 :group 'eshell-rebind)
90
91(defcustom eshell-cannot-leave-input-list
92 '(beginning-of-line-text
93 beginning-of-line
94 move-to-column
affbf647
GM
95 move-to-left-margin
96 move-to-tab-stop
97 forward-char
98 backward-char
99 delete-char
100 delete-backward-char
101 backward-delete-char
102 backward-delete-char-untabify
103 kill-paragraph
104 backward-kill-paragraph
105 kill-sentence
106 backward-kill-sentence
107 kill-sexp
108 backward-kill-sexp
109 kill-word
110 backward-kill-word
111 kill-region
112 forward-list
113 backward-list
114 forward-page
115 backward-page
116 forward-point
117 forward-paragraph
118 backward-paragraph
119 backward-prefix-chars
120 forward-sentence
121 backward-sentence
122 forward-sexp
123 backward-sexp
124 forward-to-indentation
125 backward-to-indentation
126 backward-up-list
127 forward-word
128 backward-word
129 forward-line
affbf647
GM
130 previous-line
131 next-line
132 forward-visible-line
133 forward-comment
134 forward-thing)
ec60da52 135 "A list of commands that cannot leave the input area."
affbf647
GM
136 :type '(repeat function)
137 :group 'eshell-rebind)
138
139;; Internal Variables:
140
141(defvar eshell-input-keymap)
142(defvar eshell-previous-point)
143(defvar eshell-lock-keymap)
144
145;;; Functions:
146
147(defun eshell-rebind-initialize ()
fa463103 148 "Initialize the inputting code."
affbf647 149 (unless eshell-non-interactive-p
affbf647 150 (add-hook 'eshell-mode-hook 'eshell-setup-input-keymap nil t)
affbf647
GM
151 (make-local-variable 'eshell-previous-point)
152 (add-hook 'pre-command-hook 'eshell-save-previous-point nil t)
affbf647
GM
153 (make-local-variable 'overriding-local-map)
154 (add-hook 'post-command-hook 'eshell-rebind-input-map nil t)
155 (set (make-local-variable 'eshell-lock-keymap) nil)
156 (define-key eshell-command-map [(meta ?l)] 'eshell-lock-local-map)))
157
158(defun eshell-lock-local-map (&optional arg)
159 "Lock or unlock the current local keymap.
160Within a prefix arg, set the local keymap to its normal value, and
161lock it at that."
162 (interactive "P")
163 (if (or arg (not eshell-lock-keymap))
164 (progn
165 (use-local-map eshell-mode-map)
166 (setq eshell-lock-keymap t)
167 (message "Local keymap locked in normal mode"))
168 (use-local-map eshell-input-keymap)
169 (setq eshell-lock-keymap nil)
170 (message "Local keymap unlocked: obey context")))
171
172(defun eshell-save-previous-point ()
173 "Save the location of point before the next command is run."
174 (setq eshell-previous-point (point)))
175
176(defsubst eshell-point-within-input-p (pos)
177 "Test whether POS is within an input range."
178 (let (begin)
179 (or (and (>= pos eshell-last-output-end)
180 eshell-last-output-end)
181 (and eshell-remap-previous-input
182 (setq begin
183 (save-excursion
184 (eshell-bol)
185 (and (not (bolp)) (point))))
186 (>= pos begin)
187 (<= pos (line-end-position))
188 begin))))
189
190(defun eshell-rebind-input-map ()
191 "Rebind the input keymap based on the location of the cursor."
192 (ignore-errors
193 (unless eshell-lock-keymap
194 (if (eshell-point-within-input-p (point))
195 (use-local-map eshell-input-keymap)
196 (let (begin)
197 (if (and eshell-confine-point-to-input
198 (setq begin
199 (eshell-point-within-input-p eshell-previous-point))
200 (memq this-command eshell-cannot-leave-input-list))
201 (progn
202 (use-local-map eshell-input-keymap)
203 (goto-char begin)
204 (if (and eshell-error-if-move-away
205 (not (eq this-command 'kill-region)))
206 (beep)))
207 (use-local-map eshell-mode-map)))))))
208
209(defun eshell-setup-input-keymap ()
210 "Setup the input keymap to be used during input editing."
211 (make-local-variable 'eshell-input-keymap)
212 (setq eshell-input-keymap (make-sparse-keymap))
213 (set-keymap-parent eshell-input-keymap eshell-mode-map)
214 (let ((bindings eshell-rebind-keys-alist))
215 (while bindings
216 (define-key eshell-input-keymap (caar bindings)
217 (cdar bindings))
218 (setq bindings (cdr bindings)))))
219
220(defun eshell-delete-backward-char (n &optional killflag)
221 "Delete the last character, unless it's part of the output."
222 (interactive "P")
223 (let ((count (prefix-numeric-value n)))
224 (if (eshell-point-within-input-p (- (point) count))
225 (delete-backward-char count n)
226 (beep))))
227
228(defun eshell-delchar-or-maybe-eof (arg)
229 "Delete ARG characters forward or send an EOF to subprocess.
230Sends an EOF only if point is at the end of the buffer and there is no
231input."
232 (interactive "p")
8c6b1d83 233 (let ((proc (eshell-interactive-process)))
affbf647
GM
234 (if (eobp)
235 (cond
ca7aae91 236 ((/= (point) eshell-last-output-end)
affbf647
GM
237 (beep))
238 (proc
239 (process-send-eof))
240 (t
241 (eshell-life-is-too-much)))
242 (eshell-delete-backward-char (- arg)))))
243
dbba8a04 244(provide 'em-rebind)
affbf647 245
3146b070
GM
246;; Local Variables:
247;; generated-autoload-file: "esh-groups.el"
248;; End:
249
affbf647 250;;; em-rebind.el ends here