Function: bubbles-mode
bubbles-mode is an interactive and byte-compiled function defined in
bubbles.el.gz.
Signature
(bubbles-mode)
Documentation
Major mode for playing bubbles.
<double-down-mouse-1> bubbles-plop
<down-mouse-3> <nil-6> nil
<down-mouse-3> <nil> nil
<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 quit-window
u bubbles-undo
This mode runs the hook bubbles-mode-hook, as the final or
penultimate step during initialization.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/play/bubbles.el.gz
(define-derived-mode bubbles-mode nil "Bubbles"
"Major mode for playing bubbles.
\\{bubbles-mode-map}"
(setq buffer-read-only t
show-trailing-whitespace nil)
(buffer-disable-undo)
(force-mode-line-update)
(redisplay)
(add-hook 'post-command-hook #'bubbles--mark-neighborhood t t))