1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-11 09:20:51 +00:00

Tweak comint docstring to suggest remap bindings

This commit is contained in:
Daniel Colascione 2014-02-01 23:51:26 -08:00
parent 4472a19603
commit f2b7d12378
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2014-02-02 Daniel Colascione <dancol@dancol.org>
* comint.el (comint-prompt-read-only): Change doc to suggest remap keybinding.
2014-02-02 Glenn Morris <rgm@gnu.org>
* register.el (register-read-with-preview, point-to-register)

View File

@ -186,8 +186,8 @@ wish to put something like the following in your init file:
\(add-hook 'comint-mode-hook
(lambda ()
(define-key comint-mode-map \"\\C-w\" 'comint-kill-region)
(define-key comint-mode-map [C-S-backspace]
(define-key comint-mode-map [remap kill-region] 'comint-kill-region)
(define-key comint-mode-map [remap kill-whole-line]
'comint-kill-whole-line)))
If you sometimes use comint-mode on text-only terminals or with `emacs -nw',