Function: eww-buffer-show-previous
eww-buffer-show-previous is an interactive and byte-compiled function
defined in eww.el.gz.
Signature
(eww-buffer-show-previous)
Documentation
Move to previous eww buffer in the list and display it.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/eww.el.gz
(defun eww-buffer-show-previous ()
"Move to previous eww buffer in the list and display it."
(interactive nil eww-buffers-mode)
(beginning-of-line)
(when (bobp)
(goto-char (point-max)))
(forward-line -1)
(eww-buffer-show))