Mercurial > emacs
changeset 100882:47e78f883705
(visual-line-mode-map): Remove M-[ and M-] bindings.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Sun, 04 Jan 2009 08:30:58 +0000 |
parents | b6ac3685ddbf |
children | f72e6fcdbe46 |
files | lisp/simple.el |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/simple.el Sun Jan 04 08:30:28 2009 +0000 +++ b/lisp/simple.el Sun Jan 04 08:30:58 2009 +0000 @@ -4514,8 +4514,10 @@ (define-key map [remap kill-line] 'kill-visual-line) (define-key map [remap move-beginning-of-line] 'beginning-of-visual-line) (define-key map [remap move-end-of-line] 'end-of-visual-line) - (define-key map "\M-[" 'previous-logical-line) - (define-key map "\M-]" 'next-logical-line) + ;; These keybindings interfere with xterm function keys. Are + ;; there any other suitable bindings? + ;; (define-key map "\M-[" 'previous-logical-line) + ;; (define-key map "\M-]" 'next-logical-line) map)) (defcustom visual-line-fringe-indicators '(nil nil)