aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-05-28 01:16:21 +0000
committerRichard M. Stallman1998-05-28 01:16:21 +0000
commitfb597fe85a4c5212f54f97124c83b6af30d5d722 (patch)
tree2b428a088db16d0ce8ed4be406cc55faab13639c
parentf1e2c45e9a0193f667853bb6da1249761120d9dc (diff)
downloademacs-fb597fe85a4c5212f54f97124c83b6af30d5d722.tar.gz
emacs-fb597fe85a4c5212f54f97124c83b6af30d5d722.zip
(comint-mode-map): Move bindings of
comint-next-matching-input-from-input to C-c M-r, and comint-previous-matching-input-from-input to C-c M-s. Move comint-get-next-from-history to C-c C-x.
-rw-r--r--lisp/comint.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index f486c7c29ae..370564617c9 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -490,13 +490,13 @@ Entry to this mode runs the hooks on `comint-mode-hook'."
490 (define-key comint-mode-map [C-down] 'comint-next-input) 490 (define-key comint-mode-map [C-down] 'comint-next-input)
491 (define-key comint-mode-map "\er" 'comint-previous-matching-input) 491 (define-key comint-mode-map "\er" 'comint-previous-matching-input)
492 (define-key comint-mode-map "\es" 'comint-next-matching-input) 492 (define-key comint-mode-map "\es" 'comint-next-matching-input)
493 (define-key comint-mode-map [?\A-\M-r] 'comint-previous-matching-input-from-input) 493 (define-key comint-mode-map [?\C-c ?\M-r] 'comint-previous-matching-input-from-input)
494 (define-key comint-mode-map [?\A-\M-s] 'comint-next-matching-input-from-input) 494 (define-key comint-mode-map [?\C-c ?\M-s] 'comint-next-matching-input-from-input)
495 (define-key comint-mode-map "\e\C-l" 'comint-show-output) 495 (define-key comint-mode-map "\e\C-l" 'comint-show-output)
496 (define-key comint-mode-map "\C-m" 'comint-send-input) 496 (define-key comint-mode-map "\C-m" 'comint-send-input)
497 (define-key comint-mode-map "\C-d" 'comint-delchar-or-maybe-eof) 497 (define-key comint-mode-map "\C-d" 'comint-delchar-or-maybe-eof)
498 (define-key comint-mode-map "\C-c " 'comint-accumulate) 498 (define-key comint-mode-map "\C-c " 'comint-accumulate)
499 (define-key comint-mode-map "\C-c\C-q" 'comint-get-next-from-history) 499 (define-key comint-mode-map "\C-c\C-x" 'comint-get-next-from-history)
500 (define-key comint-mode-map "\C-c\C-a" 'comint-bol-or-process-mark) 500 (define-key comint-mode-map "\C-c\C-a" 'comint-bol-or-process-mark)
501 (define-key comint-mode-map "\C-c\C-u" 'comint-kill-input) 501 (define-key comint-mode-map "\C-c\C-u" 'comint-kill-input)
502 (define-key comint-mode-map "\C-c\C-w" 'backward-kill-word) 502 (define-key comint-mode-map "\C-c\C-w" 'backward-kill-word)