Function: thumbs-forward-char

thumbs-forward-char is an interactive and byte-compiled function defined in thumbs.el.gz.

Signature

(thumbs-forward-char)

Documentation

Move forward one image.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/thumbs.el.gz
(defun thumbs-forward-char ()
  "Move forward one image."
  (interactive)
  (forward-char)
  (while (and (not (eobp)) (not (thumbs-current-image)))
    (forward-char))
  (thumbs-show-name))