Variable: thumbs-mode-map

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

Value

+           thumbs-show-more-images
<delete>    thumbs-delete-images
<down>      thumbs-forward-line
<left>      thumbs-backward-char
<mouse-2>   thumbs-mouse-find-image
<return>    thumbs-find-image-at-point
<right>     thumbs-forward-char
<up>        thumbs-backward-line
C-<return>  thumbs-set-image-at-point-to-root-window
M-<return>  thumbs-find-image-at-point-other-window
R           thumbs-rename-images
d           thumbs-dired
m           thumbs-mark
q           thumbs-kill-buffer
s           thumbs-show-name
u           thumbs-unmark
x           thumbs-delete-images

Documentation

Keymap for thumbs-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/thumbs.el.gz
;; thumbs-mode

(defvar thumbs-mode-map
  (let ((map (make-sparse-keymap)))
    (define-key map [return] 'thumbs-find-image-at-point)
    (define-key map [mouse-2] 'thumbs-mouse-find-image)
    (define-key map [(meta return)] 'thumbs-find-image-at-point-other-window)
    (define-key map [(control return)] 'thumbs-set-image-at-point-to-root-window)
    (define-key map [delete] 'thumbs-delete-images)
    (define-key map [right] 'thumbs-forward-char)
    (define-key map [left] 'thumbs-backward-char)
    (define-key map [up] 'thumbs-backward-line)
    (define-key map [down] 'thumbs-forward-line)
    (define-key map "+" 'thumbs-show-more-images)
    (define-key map "d" 'thumbs-dired)
    (define-key map "m" 'thumbs-mark)
    (define-key map "u" 'thumbs-unmark)
    (define-key map "R" 'thumbs-rename-images)
    (define-key map "x" 'thumbs-delete-images)
    (define-key map "s" 'thumbs-show-name)
    (define-key map "q" 'thumbs-kill-buffer)
    map)
  "Keymap for `thumbs-mode'.")