Variable: bubbles-mode-map
bubbles-mode-map is a variable defined in bubbles.el.gz.
Value
<double-down-mouse-1> bubbles-plop
<mouse-2> bubbles-plop
C-j bubbles-plop
RET bubbles-plop
SPC bubbles-plop
b backward-char
f forward-char
n next-line
p previous-line
q bubbles-quit
u bubbles-undo
Documentation
Mode map for bubbles.
Source Code
;; Defined in /usr/src/emacs/lisp/play/bubbles.el.gz
(defvar bubbles-mode-map
(let ((map (make-sparse-keymap 'bubbles-mode-map)))
;; (suppress-keymap map t)
(define-key map "q" 'bubbles-quit)
(define-key map "\n" 'bubbles-plop)
(define-key map " " 'bubbles-plop)
(define-key map [double-down-mouse-1] 'bubbles-plop)
(define-key map [mouse-2] 'bubbles-plop)
(define-key map "\C-m" 'bubbles-plop)
(define-key map "u" 'bubbles-undo)
(define-key map "p" 'previous-line)
(define-key map "n" 'next-line)
(define-key map "f" 'forward-char)
(define-key map "b" 'backward-char)
map)
"Mode map for `bubbles'.")