Variable: blackbox-mode-map

blackbox-mode-map is a variable defined in blackbox.el.gz.

Value

<insert>  bb-romp
<left>    bb-left
<return>  bb-done
<right>   bb-right
C-a       bb-bol
C-b       bb-left
C-e       bb-eol
C-f       bb-right
C-n       bb-down
C-p       bb-up
RET       bb-done
SPC       bb-romp
SPC..~    undefined
q         bury-buffer

Documentation

Keymap for blackbox-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/play/blackbox.el.gz
(defvar blackbox-mode-map
  (let ((map (make-keymap)))
    (suppress-keymap map t)
    (blackbox-redefine-key map 'backward-char 'bb-left)
    (blackbox-redefine-key map 'left-char 'bb-left)
    (blackbox-redefine-key map 'forward-char 'bb-right)
    (blackbox-redefine-key map 'right-char 'bb-right)
    (blackbox-redefine-key map 'previous-line 'bb-up)
    (blackbox-redefine-key map 'next-line 'bb-down)
    (blackbox-redefine-key map 'move-end-of-line 'bb-eol)
    (blackbox-redefine-key map 'move-beginning-of-line 'bb-bol)
    (define-key map " " 'bb-romp)
    (define-key map "q" 'bury-buffer)
    (define-key map [insert] 'bb-romp)
    (define-key map [return] 'bb-done)
    (blackbox-redefine-key map 'newline 'bb-done)
    map))