Function: eww-toggle-images

eww-toggle-images is an interactive and byte-compiled function defined in eww.el.gz.

Signature

(eww-toggle-images)

Documentation

Toggle whether or not to display images.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/eww.el.gz
(defun eww-toggle-images ()
  "Toggle whether or not to display images."
  (interactive nil eww-mode)
  (setq shr-inhibit-images (not shr-inhibit-images))
  (eww-reload)
  (message "Images are now %s"
           (if shr-inhibit-images "off" "on")))