Function: next-logical-line

next-logical-line is an interactive and byte-compiled function defined in simple.el.gz.

Signature

(next-logical-line &optional ARG TRY-VSCROLL)

Documentation

Move cursor vertically down ARG lines.

This is identical to next-line, except that it always moves by logical lines instead of visual lines, ignoring the value of the variable line-move-visual(var)/line-move-visual(fun).

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun next-logical-line (&optional arg try-vscroll)
  "Move cursor vertically down ARG lines.
This is identical to `next-line', except that it always moves
by logical lines instead of visual lines, ignoring the value of
the variable `line-move-visual'."
  (interactive "^p\np")
  (let ((line-move-visual nil))
    (with-no-warnings
      (next-line arg try-vscroll))))