Variable: image-auto-resize-max-scale-percent

image-auto-resize-max-scale-percent is a customizable variable defined in image-mode.el.gz.

Value

nil

Documentation

Max size (in percent) to scale up to when image-auto-resize is fit-window.

Can be either a number larger than 100, or nil, which means no max size.

This variable was added, or its default value changed, in Emacs 29.1.

Probably introduced at or before Emacs version 29.1.

Source Code

;; Defined in /usr/src/emacs/lisp/image-mode.el.gz
(defcustom image-auto-resize-max-scale-percent nil
  "Max size (in percent) to scale up to when `image-auto-resize' is `fit-window'.
Can be either a number larger than 100, or nil, which means no
max size."
  :type '(choice (const :tag "No max" nil)
                 natnum)
  :version "29.1"
  :group 'image)