1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-27 07:37:33 +00:00

(hexl-mode-map): Add bindings for cursor keys.

This commit is contained in:
Karl Heuer 1994-05-07 01:48:54 +00:00
parent e945e87d7f
commit f86f73c33d

View File

@ -594,6 +594,15 @@ You may also type up to 3 octal digits, to insert a character with that code"
nil
(setq hexl-mode-map (make-sparse-keymap))
(define-key hexl-mode-map [left] 'hexl-backward-char)
(define-key hexl-mode-map [right] 'hexl-forward-char)
(define-key hexl-mode-map [up] 'hexl-previous-line)
(define-key hexl-mode-map [down] 'hexl-next-line)
(define-key hexl-mode-map [M-left] 'hexl-backward-short)
(define-key hexl-mode-map [M-right] 'hexl-forward-short)
(define-key hexl-mode-map [next] 'hexl-scroll-up)
(define-key hexl-mode-map [prev] 'hexl-scroll-down)
(define-key hexl-mode-map "\C-a" 'hexl-beginning-of-line)
(define-key hexl-mode-map "\C-b" 'hexl-backward-char)
(define-key hexl-mode-map "\C-d" 'undefined)