1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(visual-line-mode-map): Remove M-[ and M-] bindings.

This commit is contained in:
Chong Yidong 2009-01-04 08:30:58 +00:00
parent 5d0fba4638
commit b316b2b864

View file

@ -4514,8 +4514,10 @@ the variable `line-move-visual'."
(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)