Function: eww-end-of-text

eww-end-of-text is an interactive and byte-compiled function defined in eww.el.gz.

Signature

(eww-end-of-text)

Documentation

Move to the end of the text in the input field.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/eww.el.gz
(defun eww-end-of-text ()
  "Move to the end of the text in the input field."
  (interactive nil eww-mode)
  (goto-char (eww-end-of-field))
  (let ((start (eww-beginning-of-field)))
    (while (and (equal (following-char) ? )
		(> (point) start))
      (forward-char -1))
    (when (> (point) start)
      (forward-char 1))))