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/obsolete/thumbs.el.gz
;; thumbs-mode

(defvar-keymap thumbs-mode-map
  :doc "Keymap for `thumbs-mode'."
  "<return>"   #'thumbs-find-image-at-point
  "<mouse-2>"  #'thumbs-mouse-find-image
  "M-<return>" #'thumbs-find-image-at-point-other-window
  "C-<return>" #'thumbs-set-image-at-point-to-root-window
  "<delete>"   #'thumbs-delete-images
  "<right>"    #'thumbs-forward-char
  "<left>"     #'thumbs-backward-char
  "<up>"       #'thumbs-backward-line
  "<down>"     #'thumbs-forward-line
  "+"          #'thumbs-show-more-images
  "d"          #'thumbs-dired
  "m"          #'thumbs-mark
  "u"          #'thumbs-unmark
  "R"          #'thumbs-rename-images
  "x"          #'thumbs-delete-images
  "s"          #'thumbs-show-name
  "q"          #'thumbs-kill-buffer)