Function: eww-forward-url
eww-forward-url is an interactive and byte-compiled function defined
in eww.el.gz.
Signature
(eww-forward-url)
Documentation
Go to the next displayed page.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/eww.el.gz
(defun eww-forward-url ()
"Go to the next displayed page."
(interactive nil eww-mode)
(when (<= eww-history-position 1)
(user-error "No next page"))
(eww-save-history)
(setq eww-history-position (1- eww-history-position))
(eww-restore-history (elt eww-history (1- eww-history-position))))