Function: thumbs-show-from-dir

thumbs-show-from-dir is an interactive and byte-compiled function defined in thumbs.el.gz.

Signature

(thumbs-show-from-dir DIR &optional REG SAME-WINDOW)

Documentation

Make a preview buffer for all images in DIR.

Optional argument REG to select file matching a regexp, and SAME-WINDOW to show thumbs in the same window.

Key Bindings

Aliases

thumbs (obsolete since 29.1)

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/thumbs.el.gz
;;;###autoload
(defun thumbs-show-from-dir (dir &optional reg same-window)
  "Make a preview buffer for all images in DIR.
Optional argument REG to select file matching a regexp,
and SAME-WINDOW to show thumbs in the same window."
  (interactive "DThumbs (directory): ")
  (thumbs-show-thumbs-list
   (directory-files dir t (or reg (image-file-name-regexp)))
   dir same-window))