Variable: image-dired-line-up-method
image-dired-line-up-method is a customizable variable defined in
image-dired.el.gz.
Value
dynamic
Documentation
Default method for line-up of thumbnails in thumbnail buffer.
Used by image-dired-display-thumbs and other functions that needs
to line-up thumbnails. Dynamic means to use the available width of
the window containing the thumbnail buffer, Fixed means to use
image-dired-thumbs-per-row, Interactive is for asking the user,
and No line-up means that no automatic line-up will be done.
Source Code
;; Defined in /usr/src/emacs/lisp/image-dired.el.gz
(defcustom image-dired-line-up-method 'dynamic
"Default method for line-up of thumbnails in thumbnail buffer.
Used by `image-dired-display-thumbs' and other functions that needs
to line-up thumbnails. Dynamic means to use the available width of
the window containing the thumbnail buffer, Fixed means to use
`image-dired-thumbs-per-row', Interactive is for asking the user,
and No line-up means that no automatic line-up will be done."
:type '(choice :tag "Default line-up method"
(const :tag "Dynamic" dynamic)
(const :tag "Fixed" fixed)
(const :tag "Interactive" interactive)
(const :tag "No line-up" none)))